summaryrefslogtreecommitdiff
path: root/db/migrate/20191213143656_create_ci_pipelines_config.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20191213143656_create_ci_pipelines_config.rb')
-rw-r--r--db/migrate/20191213143656_create_ci_pipelines_config.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/20191213143656_create_ci_pipelines_config.rb b/db/migrate/20191213143656_create_ci_pipelines_config.rb
deleted file mode 100644
index a1821ee9f66..00000000000
--- a/db/migrate/20191213143656_create_ci_pipelines_config.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# frozen_string_literal: true
-
-class CreateCiPipelinesConfig < ActiveRecord::Migration[5.2]
- DOWNTIME = false
-
- def change
- create_table :ci_pipelines_config, id: false do |t|
- t.references :pipeline,
- primary_key: true,
- foreign_key: { to_table: :ci_pipelines, on_delete: :cascade }
- t.text :content, null: false # rubocop:disable Migration/AddLimitToTextColumns
- end
- end
-end