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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-17 19:05:49 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-17 19:05:49 +0300
commit43a25d93ebdabea52f99b05e15b06250cd8f07d7 (patch)
treedceebdc68925362117480a5d672bcff122fb625b /db/post_migrate/20230502182754_drop_clusters_applications_crossplane.rb
parent20c84b99005abd1c82101dfeff264ac50d2df211 (diff)
Add latest changes from gitlab-org/gitlab@16-0-stable-eev16.0.0-rc42
Diffstat (limited to 'db/post_migrate/20230502182754_drop_clusters_applications_crossplane.rb')
-rw-r--r--db/post_migrate/20230502182754_drop_clusters_applications_crossplane.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/db/post_migrate/20230502182754_drop_clusters_applications_crossplane.rb b/db/post_migrate/20230502182754_drop_clusters_applications_crossplane.rb
new file mode 100644
index 00000000000..c35cfc8fd96
--- /dev/null
+++ b/db/post_migrate/20230502182754_drop_clusters_applications_crossplane.rb
@@ -0,0 +1,26 @@
+# 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 DropClustersApplicationsCrossplane < Gitlab::Database::Migration[2.1]
+ def up
+ drop_table :clusters_applications_crossplane
+ end
+
+ # Based on original migration:
+ # https://gitlab.com/gitlab-org/gitlab/-/blob/8b1637296b286a5c46e0d8fdf6da42a43a7c9986/db/migrate/20191017191341_create_clusters_applications_crossplane.rb
+ # rubocop:disable Migration/SchemaAdditionMethodsNoPost
+ def down
+ create_table :clusters_applications_crossplane, id: :integer do |t|
+ t.timestamps_with_timezone null: false
+ t.references :cluster, null: false, index: false
+ 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
+ # rubocop:enable Migration/SchemaAdditionMethodsNoPost
+end