Skip to content

Instantly share code, notes, and snippets.

@swlkr
Last active February 24, 2017 02:30
Show Gist options
  • Save swlkr/bf36cb6020d9ce8a3469238cb61a756b to your computer and use it in GitHub Desktop.
Save swlkr/bf36cb6020d9ce8a3469238cb61a756b to your computer and use it in GitHub Desktop.
{:up ["
create table stripe.events (
id uuid primary key,
stripe_id varchar(50) not null,
object varchar(50) not null,
api_version varchar(20) not null,
livemode boolean not null,
pending_webhooks int not null,
request text,
type text not null,
data jsonb not null,
created_at timestamp without time zone default (now() at time zone 'utc')
);"]
:down ["drop table stripe.events"]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment