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

20191017191341_create_clusters_applications_crossplane.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8dc25c561164100a74ecd57b2f9ac0f9c071a636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class CreateClustersApplicationsCrossplane < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    create_table :clusters_applications_crossplane do |t|
      t.timestamps_with_timezone null: false
      t.references :cluster, null: false, index: false, foreign_key: { on_delete: :cascade }
      t.integer :status, null: false
      t.string :version, null: false, limit: 255
      t.string :stack, null: false, limit: 255
      t.text :status_reason
      t.index :cluster_id, unique: true
    end
  end
end