summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-09-15 17:58:51 -0400
committerEvan Prodromou <evan@status.net>2009-10-21 22:43:40 -0400
commit61826169de6a475d6ae7181e31c44cad5d208789 (patch)
tree507fdfdbc8c2b1a75724b6c55ca4dc711a0628a7 /db
parent671732ade7e450cfbf248d7b08917c428a92d23a (diff)
lat,lon -> lat,long
Diffstat (limited to 'db')
-rw-r--r--db/statusnet.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/statusnet.sql b/db/statusnet.sql
index 1524d8395..0889323e0 100644
--- a/db/statusnet.sql
+++ b/db/statusnet.sql
@@ -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',