summaryrefslogtreecommitdiff
path: root/db/migrate/20130711063759_create_project_group_links.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20130711063759_create_project_group_links.rb')
-rw-r--r--db/migrate/20130711063759_create_project_group_links.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20130711063759_create_project_group_links.rb b/db/migrate/20130711063759_create_project_group_links.rb
deleted file mode 100644
index efccb2aa938..00000000000
--- a/db/migrate/20130711063759_create_project_group_links.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# rubocop:disable all
-class CreateProjectGroupLinks < ActiveRecord::Migration
- DOWNTIME = false
-
- def change
- create_table :project_group_links do |t|
- t.integer :project_id, null: false
- t.integer :group_id, null: false
-
- t.timestamps null: true
- end
- end
-end