aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2012-05-02 13:03:57 +0100
committerStruan Donald <struan@exo.org.uk>2012-05-02 13:03:57 +0100
commit2453b1dec215cd69926c649839e454c43e3e5469 (patch)
treedbbf1918a40951546970e85c804983351106196a /db
parent6ece0fc89fcb6ad1915769910f085c62fb957d75 (diff)
forgot to commit schema change file :(
Diffstat (limited to 'db')
-rw-r--r--db/schema_0019-add_title_to_users.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/db/schema_0019-add_title_to_users.sql b/db/schema_0019-add_title_to_users.sql
new file mode 100644
index 000000000..1cc7dd16d
--- /dev/null
+++ b/db/schema_0019-add_title_to_users.sql
@@ -0,0 +1,8 @@
+-- These are changes needed to the schema to support moving over to DBIx::Class
+
+begin;
+
+AlTER TABLE users
+ ADD COLUMN title text;
+
+commit;