chinwagsocial/db/migrate/20220307094650_fix_featured_tags_constraints.rb
2022-03-09 08:51:12 +01:00

18 lines
521 B
Ruby

class FixFeaturedTagsConstraints < ActiveRecord::Migration[6.1]
def up
safety_assured do
execute 'DELETE FROM featured_tags WHERE tag_id IS NULL'
change_column_null :featured_tags, :tag_id, false
execute 'DELETE FROM featured_tags WHERE account_id IS NULL'
change_column_null :featured_tags, :account_id, false
end
end
def down
safety_assured do
change_column_null :featured_tags, :tag_id, true
change_column_null :featured_tags, :account_id, true
end
end
end