summaryrefslogtreecommitdiff
path: root/db/migrate/20200215225103_drop_forked_project_links_table.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200215225103_drop_forked_project_links_table.rb')
-rw-r--r--db/migrate/20200215225103_drop_forked_project_links_table.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/db/migrate/20200215225103_drop_forked_project_links_table.rb b/db/migrate/20200215225103_drop_forked_project_links_table.rb
index 9c028d23dbc..6acced2c734 100644
--- a/db/migrate/20200215225103_drop_forked_project_links_table.rb
+++ b/db/migrate/20200215225103_drop_forked_project_links_table.rb
@@ -8,6 +8,7 @@ class DropForkedProjectLinksTable < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
+ # rubocop:disable Migration/DropTable
drop_table "forked_project_links", id: :serial do |t|
t.integer "forked_to_project_id", null: false
t.integer "forked_from_project_id", null: false
@@ -15,5 +16,6 @@ class DropForkedProjectLinksTable < ActiveRecord::Migration[6.0]
t.datetime "updated_at"
t.index ["forked_to_project_id"], name: "index_forked_project_links_on_forked_to_project_id", unique: true
end
+ # rubocop:enable Migration/DropTable
end
end