diff options
author | Struan Donald <struan@exo.org.uk> | 2012-05-02 13:03:57 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-05-02 13:03:57 +0100 |
commit | 2453b1dec215cd69926c649839e454c43e3e5469 (patch) | |
tree | dbbf1918a40951546970e85c804983351106196a | |
parent | 6ece0fc89fcb6ad1915769910f085c62fb957d75 (diff) |
forgot to commit schema change file :(
-rw-r--r-- | db/schema_0019-add_title_to_users.sql | 8 |
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; |