Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20230503181808_drop_serverless_domain_cluster.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 003f2d91b549e765d2966423590cc1a556031fd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

# See https://docs.gitlab.com/ee/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class DropServerlessDomainCluster < Gitlab::Database::Migration[2.1]
  def up
    drop_table :serverless_domain_cluster
  end

  # Based on original migration:
  # https://gitlab.com/gitlab-org/gitlab/-/blob/5f7bd5b1455d87e2f1a2d1ae2c1147d51e97aa55/db/migrate/20191127030005_create_serverless_domain_cluster.rb
  def down
    create_table :serverless_domain_cluster, id: false, primary_key: :uuid do |t|
      t.string :uuid, null: false, limit: 14, primary_key: true
      t.bigint :pages_domain_id, null: false
      t.bigint :clusters_applications_knative_id, null: false
      t.bigint :creator_id
      t.datetime_with_timezone :created_at, null: false
      t.datetime_with_timezone :updated_at, null: false
      t.text :encrypted_key
      t.string :encrypted_key_iv, limit: 255
      t.text :certificate
      t.index :clusters_applications_knative_id,
        unique: true,
        name: 'idx_serverless_domain_cluster_on_clusters_applications_knative'
      t.index :pages_domain_id, name: 'index_serverless_domain_cluster_on_pages_domain_id'
      t.index :creator_id, name: 'index_serverless_domain_cluster_on_creator_id'
    end
  end
end