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

20230502201251_drop_clusters_applications_ingress.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 409c9c49b1cdcbaa2c7c0b95a44a863c24d1c77f (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
# frozen_string_literal: true

class DropClustersApplicationsIngress < Gitlab::Database::Migration[2.1]
  def up
    drop_table :clusters_applications_ingress
  end

  # Based on init schema:
  # https://gitlab.com/gitlab-org/gitlab/-/blob/b237f836df215a4ada92b9406733e6cd2483ca2d/db/migrate/20181228175414_init_schema.rb#L704-L715
  # rubocop:disable Migration/Datetime
  def down
    create_table "clusters_applications_ingress", id: :serial, force: :cascade do |t|
      t.integer "cluster_id", null: false
      t.datetime "created_at", null: false
      t.datetime "updated_at", null: false
      t.integer "status", null: false
      t.integer "ingress_type", null: false
      t.string "version", null: false
      t.string "cluster_ip"
      t.text "status_reason"
      t.string "external_ip"
      t.string "external_hostname"
      t.index ["cluster_id"], name: "index_clusters_applications_ingress_on_cluster_id", unique: true
    end
  end
  # rubocop:enable Migration/Datetime
end