diff options
Diffstat (limited to 'db/schema_0009-add_extra_to_problem.sql')
-rw-r--r-- | db/schema_0009-add_extra_to_problem.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/db/schema_0009-add_extra_to_problem.sql b/db/schema_0009-add_extra_to_problem.sql new file mode 100644 index 000000000..bac5806c7 --- /dev/null +++ b/db/schema_0009-add_extra_to_problem.sql @@ -0,0 +1,6 @@ +begin; + +ALTER TABLE problem + ADD COLUMN extra TEXT; + +commit; |