about summary refs log tree commit diff
path: root/db/migrate/20220210153119_add_overruled_at_to_account_warnings.rb
blob: a082da774c993dbdabe4b93ba02ae3479de03a99 (plain) (blame)
1
2
3
4
5
class AddOverruledAtToAccountWarnings < ActiveRecord::Migration[6.1]
  def change
    add_column :account_warnings, :overruled_at, :datetime
  end
end