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