blob: 16d91d5a39f9bd8bc62c3fb70b4bd23f7e866790 (
plain) (
blame)
1
2
3
4
5
6
7
|
class AddUnboostableToAccounts < ActiveRecord::Migration[5.2]
def change
safety_assured {
add_column :accounts, :unboostable, :boolean, null: false, default: false
}
end
end
|