Merge remote-tracking branch 'origin/kb_development' into kb_migration
This commit is contained in:
commit
94cd200097
50 changed files with 801 additions and 66 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddSearchabilityToStatuses < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :statuses, :searchability, :integer
|
||||
end
|
||||
end
|
|
@ -0,0 +1,5 @@
|
|||
class AddSearchabilityToAccounts < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :accounts, :searchability, :integer, null: false, default: 0
|
||||
end
|
||||
end
|
|
@ -0,0 +1,5 @@
|
|||
class ChangeSearchabilityDefaultValue < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
change_column_default :accounts, :searchability, from: 0, to: 2
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue