summaryrefslogtreecommitdiff
path: root/db/migrate/20150924125150_add_project_id_to_ci_tables.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20150924125150_add_project_id_to_ci_tables.rb')
-rw-r--r--db/migrate/20150924125150_add_project_id_to_ci_tables.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/db/migrate/20150924125150_add_project_id_to_ci_tables.rb b/db/migrate/20150924125150_add_project_id_to_ci_tables.rb
deleted file mode 100644
index 8b45bcf5fe1..00000000000
--- a/db/migrate/20150924125150_add_project_id_to_ci_tables.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-class AddProjectIdToCiTables < ActiveRecord::Migration
- def up
- add_column :ci_builds, :gl_project_id, :integer
- add_column :ci_commits, :gl_project_id, :integer
- add_column :ci_events, :gl_project_id, :integer
- add_column :ci_runner_projects, :gl_project_id, :integer
- add_column :ci_services, :gl_project_id, :integer
- add_column :ci_triggers, :gl_project_id, :integer
- add_column :ci_variables, :gl_project_id, :integer
- add_column :ci_web_hooks, :gl_project_id, :integer
- end
-end