]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
lat,lon -> lat,long
authorEvan Prodromou <evan@status.net>
Tue, 15 Sep 2009 21:58:51 +0000 (17:58 -0400)
committerEvan Prodromou <evan@status.net>
Thu, 22 Oct 2009 02:43:40 +0000 (22:43 -0400)
db/statusnet.sql

index 1524d83957c27815fd2f83986b2b8938f1a80d5a..0889323e0b1d4957246029bf5ba674dcd390b10b 100644 (file)
@@ -10,7 +10,7 @@ create table profile (
     bio text comment 'descriptive biography',
     location varchar(255) comment 'physical location',
     lat decimal(10,7) comment 'latitude',
-    lon decimal(10,7) comment 'longitude',
+    long decimal(10,7) comment 'longitude',
     location_id integer comment 'location id if possible',
     location_ns integer comment 'namespace for location',
 
@@ -126,7 +126,7 @@ create table notice (
     source varchar(32) comment 'source of comment, like "web", "im", or "clientname"',
     conversation integer comment 'id of root notice in this conversation' references notice (id),
     lat decimal(10,7) comment 'latitude',
-    lon decimal(10,7) comment 'longitude',
+    long decimal(10,7) comment 'longitude',
     location_id integer comment 'location id if possible',
     location_ns integer comment 'namespace for location',