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

20230501180958_drop_clusters_applications_cert_managers.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3eb5fc13a2a216bbeebd7683c5c5aa035f74bcaa (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
# 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 DropClustersApplicationsCertManagers < Gitlab::Database::Migration[2.1]
  def up
    drop_table :clusters_applications_cert_managers
  end

  # Based on init migration:
  # https://gitlab.com/gitlab-org/gitlab/-/blob/b237f836df215a4ada92b9406733e6cd2483ca2d/db/migrate/20181228175414_init_schema.rb#L680-L689
  def down
    create_table "clusters_applications_cert_managers", id: :serial, force: :cascade do |t|
      t.integer "cluster_id", null: false
      t.integer "status", null: false
      t.string "version", null: false
      t.string "email", null: false
      t.datetime_with_timezone "created_at", null: false
      t.datetime_with_timezone "updated_at", null: false
      t.text "status_reason"
      t.index ["cluster_id"], name: "index_clusters_applications_cert_managers_on_cluster_id", unique: true
    end
  end
end