chore: Use feature_flags attribute instead of settings_flags (#6820)

* chore: Use feature_flag instead of settings_flag

* Remove unnecessary changes
This commit is contained in:
Pranav Raj S
2023-04-04 09:56:58 -07:00
committed by GitHub
parent b7d0016d99
commit ebd5fbef17
7 changed files with 31 additions and 18 deletions

View File

@@ -0,0 +1,13 @@
class RemoveSettingsFlagsFromAccount < ActiveRecord::Migration[6.1]
def up
change_table :accounts do |t|
t.remove :settings_flags
end
end
def down
change_table :accounts do |t|
t.integer :settings_flags, default: 0, null: false
end
end
end