summaryrefslogtreecommitdiff
path: root/db/migrate/20191017191341_create_clusters_applications_crossplane.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20191017191341_create_clusters_applications_crossplane.rb')
-rw-r--r--db/migrate/20191017191341_create_clusters_applications_crossplane.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/db/migrate/20191017191341_create_clusters_applications_crossplane.rb b/db/migrate/20191017191341_create_clusters_applications_crossplane.rb
deleted file mode 100644
index 42f980ed99d..00000000000
--- a/db/migrate/20191017191341_create_clusters_applications_crossplane.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-# frozen_string_literal: true
-
-class CreateClustersApplicationsCrossplane < ActiveRecord::Migration[5.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- # rubocop:disable Migration/PreventStrings
- 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 # rubocop:disable Migration/AddLimitToTextColumns
- t.index :cluster_id, unique: true
- end
- end
- # rubocop:enable Migration/PreventStrings
-end