blob: 38c8785c4d5799a57bc0dae029e89fec84778bbb (
plain) (
blame)
1
2
3
4
5
6
7
|
class AddVisibilityCompatToggle < ActiveRecord::Migration[5.2]
def change
safety_assured do
add_column :users, :monsterfork_api, :smallint, null: false, default: 2
end
end
end
|