debian-mirror-gitlab/db/migrate/20200407182205_create_partitioned_foreign_keys.rb

34 lines
1,021 B
Ruby
Raw Normal View History

2020-05-24 23:13:21 +05:30
# frozen_string_literal: true
class CreatePartitionedForeignKeys < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
create_table :partitioned_foreign_keys do |t|
t.boolean :cascade_delete, null: false, default: true
t.text :from_table, null: false
t.text :from_column, null: false
t.text :to_table, null: false
t.text :to_column, null: false
end
add_text_limit :partitioned_foreign_keys, :from_table, 63
add_text_limit :partitioned_foreign_keys, :from_column, 63
add_text_limit :partitioned_foreign_keys, :to_table, 63
add_text_limit :partitioned_foreign_keys, :to_column, 63
add_index :partitioned_foreign_keys, [:to_table, :from_table, :from_column], unique: true,
name: "index_partitioned_foreign_keys_unique_index"
end
def down
2020-06-23 00:09:42 +05:30
# rubocop:disable Migration/DropTable
2020-05-24 23:13:21 +05:30
drop_table :partitioned_foreign_keys
2020-06-23 00:09:42 +05:30
# rubocop:enable Migration/DropTable
2020-05-24 23:13:21 +05:30
end
end