Fix old glitch-soc migration using removed `add_column_with_default` helper

master
Claire 2024-01-11 13:26:17 +01:00
parent 23d8bd8ce1
commit 08304075be
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ class AddApplyToMentionsFlagToKeywordMutes < ActiveRecord::Migration[5.2]
def up
safety_assured do
add_column_with_default :glitch_keyword_mutes, :apply_to_mentions, :boolean, allow_null: false, default: true
add_column :glitch_keyword_mutes, :apply_to_mentions, :boolean, null: false, default: true
end
end