Skip to content

Instantly share code, notes, and snippets.

@voltgister
Created February 4, 2016 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save voltgister/0bd7a2a29d67d0802e8f to your computer and use it in GitHub Desktop.
Save voltgister/0bd7a2a29d67d0802e8f to your computer and use it in GitHub Desktop.
CREATE TABLE bids
(
id bigint not null
, advertiser_id bigint not null
, region geography(16384) not null
, ts_start timestamp not null
, ts_end timestamp not null
, bid_amount float not null
, primary key (id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment