about summary refs log tree commit diff
path: root/db/migrate/20190701022101_add_trust_level_to_accounts.rb
blob: 917486d2ed7eb3e72f9f90db129054029bac142f (plain) (blame)
1
2
3
4
5
class AddTrustLevelToAccounts < ActiveRecord::Migration[5.2]
  def change
    add_column :accounts, :trust_level, :integer
  end
end