diff options
author | David Yip <yipdw@member.fsf.org> | 2018-04-14 09:12:50 -0500 |
---|---|---|
committer | David Yip <yipdw@member.fsf.org> | 2018-04-14 09:12:50 -0500 |
commit | 813da6788e5129579db04e89aac3076902af2c7a (patch) | |
tree | 2c7c8435e4eae5baa4b6169973c8da4644d44ded /db/migrate | |
parent | e3d0d72b299103d30fcda2b7175906c73c1571bc (diff) | |
parent | 78ed4ab75ff77d7cba60d478aa1f45d1c104785d (diff) |
Merge remote-tracking branch 'origin/master' into gs-master
Conflicts: db/schema.rb
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20180410204633_add_fields_to_accounts.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20180410204633_add_fields_to_accounts.rb b/db/migrate/20180410204633_add_fields_to_accounts.rb new file mode 100644 index 000000000..5b8c17480 --- /dev/null +++ b/db/migrate/20180410204633_add_fields_to_accounts.rb @@ -0,0 +1,5 @@ +class AddFieldsToAccounts < ActiveRecord::Migration[5.1] + def change + add_column :accounts, :fields, :jsonb + end +end |