Last active
February 24, 2017 02:30
-
-
Save swlkr/bf36cb6020d9ce8a3469238cb61a756b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{: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