aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2011-09-09 19:24:09 +0100
committerStruan Donald <struan@exo.org.uk>2011-09-09 19:24:09 +0100
commitd1020f6d455aa729ca52d18ccb39d531a866f4fc (patch)
treea9a02c62afc20b54d8f934766b9515050de02606 /db
parent63e03938cbc9401eccf36bdce8f312f171559c80 (diff)
sort of working rss address stuff with db caching and populate script
Diffstat (limited to 'db')
-rw-r--r--db/schema_0009_add_gecode_column_to_problem.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/schema_0009_add_gecode_column_to_problem.sql b/db/schema_0009_add_gecode_column_to_problem.sql
new file mode 100644
index 000000000..bda338ddd
--- /dev/null
+++ b/db/schema_0009_add_gecode_column_to_problem.sql
@@ -0,0 +1,7 @@
+
+begin;
+
+ALTER table problem
+ ADD column geocode TEXT;
+
+commit;