Merge remote-tracking branch 'origin/kb_development' into kb_migration

This commit is contained in:
KMY 2023-04-06 16:57:01 +09:00
commit 94cd200097
50 changed files with 801 additions and 66 deletions

View file

@ -0,0 +1,5 @@
class AddSearchabilityToStatuses < ActiveRecord::Migration[6.1]
def change
add_column :statuses, :searchability, :integer
end
end

View file

@ -0,0 +1,5 @@
class AddSearchabilityToAccounts < ActiveRecord::Migration[6.1]
def change
add_column :accounts, :searchability, :integer, null: false, default: 0
end
end

View file

@ -0,0 +1,5 @@
class ChangeSearchabilityDefaultValue < ActiveRecord::Migration[6.1]
def change
change_column_default :accounts, :searchability, from: 0, to: 2
end
end