Fix compatibility of recent migration with PostgreSQL 10 (#25324)

This commit is contained in:
Claire
2023-06-07 01:53:50 +02:00
committed by GitHub
parent 67d17ce194
commit f378f10404
3 changed files with 14 additions and 3 deletions

View File

@ -1,7 +1,17 @@
# frozen_string_literal: true
require Rails.root.join('lib', 'mastodon', 'migration_helpers')
class AddExclusiveToLists < ActiveRecord::Migration[6.1]
def change
add_column :lists, :exclusive, :boolean, null: false, default: false
include Mastodon::MigrationHelpers
disable_ddl_transaction!
def up
safety_assured { add_column_with_default :lists, :exclusive, :boolean, default: false, allow_null: false }
end
def down
remove_column :lists, :exclusive
end
end