20180410204633_add_fields_to_accounts.rb 153 B

1234567
  1. # frozen_string_literal: true
  2. class AddFieldsToAccounts < ActiveRecord::Migration[5.2]
  3. def change
  4. add_column :accounts, :fields, :jsonb
  5. end
  6. end