2021-10-27 15:23:28 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class CreateDetachedPartitionsTable < ActiveRecord::Migration[6.1]
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
def up
|
2021-10-27 15:23:28 +05:30
|
|
|
create_table_with_constraints :detached_partitions do |t|
|
|
|
|
t.timestamps_with_timezone null: false
|
|
|
|
t.datetime_with_timezone :drop_after, null: false
|
|
|
|
t.text :table_name, null: false
|
|
|
|
|
|
|
|
# Postgres identifier names can be up to 63 bytes
|
|
|
|
# See https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS
|
|
|
|
t.text_limit :table_name, 63
|
|
|
|
end
|
|
|
|
end
|
2022-04-04 11:22:00 +05:30
|
|
|
|
|
|
|
def down
|
|
|
|
with_lock_retries do
|
|
|
|
drop_table :detached_partitions
|
|
|
|
end
|
|
|
|
end
|
2021-10-27 15:23:28 +05:30
|
|
|
end
|