feat: convert feature_flag to bigint [CW-2767] (#8350)

Co-authored-by: Sojan <sojan@pepalo.com>
This commit is contained in:
Shivam Mishra
2023-11-18 05:20:24 +05:30
committed by GitHub
parent 59ace66c6f
commit 5588d6e344
3 changed files with 12 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
class ChangeFeatureFlagsToBigintInAccounts < ActiveRecord::Migration[7.0]
def up
change_column :accounts, :feature_flags, :bigint
end
def down
change_column :accounts, :feature_flags, :integer
end
end