Skip to content

Instantly share code, notes, and snippets.

@voltgister
Created February 4, 2016 17:14
Show Gist options
  • Save voltgister/44aff011e8db3c5d43e5 to your computer and use it in GitHub Desktop.
Save voltgister/44aff011e8db3c5d43e5 to your computer and use it in GitHub Desktop.
create table regions (
id integer not null primary key,
name varchar(128) not null,
border geography
);
insert into regions values (
0,
'The Bermuda Triangle',
polygonFromText('POLYGON((-64.72 32.16, -80.41 25.30, -65.82 18.40, -64.72 32.16))')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment