Fix mention_urls error

This commit is contained in:
KMY 2023-04-06 10:06:56 +09:00
parent 489eeb4aa7
commit 5b4661c2f7
3 changed files with 22 additions and 2 deletions

View file

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