aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0019-add_title_to_users.sql
blob: 1cc7dd16df416ca6b3543c77dfd09152b8cd405c (plain)
1
2
3
4
5
6
7
8
-- These are changes needed to the schema to support moving over to DBIx::Class

begin;

AlTER TABLE users
    ADD COLUMN title text;

commit;