diff options
author | Evan Prodromou <evan@status.net> | 2009-09-15 17:59:20 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-10-21 22:43:40 -0400 |
commit | 3b3d861b93912d07a18111d02009871aac4181c7 (patch) | |
tree | 85130fa2b29f0ed0575f0758d643158c092e12f6 | |
parent | 61826169de6a475d6ae7181e31c44cad5d208789 (diff) |
Revert "lat,lon -> lat,long"
This reverts commit 61d948cffee0aff4fd7853421ec0849458ea34c9.
-rw-r--r-- | db/statusnet.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/statusnet.sql b/db/statusnet.sql index 0889323e0..1524d8395 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', - long decimal(10,7) comment 'longitude', + lon 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', - long decimal(10,7) comment 'longitude', + lon decimal(10,7) comment 'longitude', location_id integer comment 'location id if possible', location_ns integer comment 'namespace for location', |