projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f104d31
)
Add missing image_location field.
author
Matt Selsky
<selsky@columbia.edu>
Tue, 10 Nov 2009 04:02:39 +0000
(23:02 -0500)
committer
Matt Selsky
<selsky@columbia.edu>
Tue, 10 Nov 2009 04:02:39 +0000
(23:02 -0500)
Make sure datatypes are capitalized and blank lines are prefixed with comment characters.
ansel/scripts/sql/ansel.pgsql.sql
patch
|
blob
|
history
diff --git
a/ansel/scripts/sql/ansel.pgsql.sql
b/ansel/scripts/sql/ansel.pgsql.sql
index
b9ff50f
..
b54006b
100644
(file)
--- a/
ansel/scripts/sql/ansel.pgsql.sql
+++ b/
ansel/scripts/sql/ansel.pgsql.sql
@@
-128,9
+128,10
@@
CREATE TABLE ansel_images_tags (
CREATE TABLE ansel_images_geolocation (
image_id INT NOT NULL,
- image_latitude varchar(32),
- image_longitude varchar(32),
-
+ image_latitude VARCHAR(32),
+ image_longitude VARCHAR(32),
+ image_location VARCHAR(255),
+--
PRIMARY KEY (image_id)
);