2021-06-08 01:23:25 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class CreateClustersIntegrationElasticstack < ActiveRecord::Migration[6.0]
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
def up
|
2021-06-08 01:23:25 +05:30
|
|
|
create_table_with_constraints :clusters_integration_elasticstack, id: false do |t|
|
|
|
|
t.timestamps_with_timezone null: false
|
|
|
|
t.references :cluster, primary_key: true, default: nil, index: false, foreign_key: { on_delete: :cascade }
|
|
|
|
t.boolean :enabled, null: false, default: false
|
|
|
|
t.text :chart_version
|
|
|
|
t.text_limit :chart_version, 10
|
|
|
|
end
|
|
|
|
end
|
2022-04-04 11:22:00 +05:30
|
|
|
|
|
|
|
def down
|
|
|
|
with_lock_retries do
|
|
|
|
drop_table :clusters_integration_elasticstack
|
|
|
|
end
|
|
|
|
end
|
2021-06-08 01:23:25 +05:30
|
|
|
end
|