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:
Diffstat (limited to 'db/migrate/20170620064728_create_ci_pipeline_schedule_variables.rb')
-rw-r--r--db/migrate/20170620064728_create_ci_pipeline_schedule_variables.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/db/migrate/20170620064728_create_ci_pipeline_schedule_variables.rb b/db/migrate/20170620064728_create_ci_pipeline_schedule_variables.rb
deleted file mode 100644
index 74f3603505b..00000000000
--- a/db/migrate/20170620064728_create_ci_pipeline_schedule_variables.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-class CreateCiPipelineScheduleVariables < ActiveRecord::Migration[4.2]
- DOWNTIME = false
-
- def up
- create_table :ci_pipeline_schedule_variables do |t|
- t.string :key, null: false
- t.text :value
- t.text :encrypted_value
- t.string :encrypted_value_salt
- t.string :encrypted_value_iv
- t.integer :pipeline_schedule_id, null: false
-
- t.timestamps_with_timezone null: true
- end
-
- add_index :ci_pipeline_schedule_variables,
- [:pipeline_schedule_id, :key],
- name: "index_ci_pipeline_schedule_variables_on_schedule_id_and_key",
- unique: true
- end
-
- def down
- drop_table :ci_pipeline_schedule_variables
- end
-end