aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
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;