20161205214545_add_suspended_to_accounts.rb 190 B

1234567
  1. # frozen_string_literal: true
  2. class AddSuspendedToAccounts < ActiveRecord::Migration[5.0]
  3. def change
  4. add_column :accounts, :suspended, :boolean, null: false, default: false
  5. end
  6. end