From 55fa9425e924a2394aa05406c6b2439e7e0e94c5 Mon Sep 17 00:00:00 2001 From: blackst0ne Date: Wed, 9 May 2018 20:07:04 +1100 Subject: Fix `downtime_check` job 15fcd9650f6a4a5832e2ed57419b11e30d3f606f (!18547) squashes old migrations to a single one. Old migrations had `rubocop:disable all` rule, but the new migration doesn't have it, so the `downtime_check` fails. This commit explicitly tells that the migration requires downtime. --- db/migrate/20140313092127_init_schema.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/db/migrate/20140313092127_init_schema.rb b/db/migrate/20140313092127_init_schema.rb index e5c3b65fa8d..895298ed4ed 100644 --- a/db/migrate/20140313092127_init_schema.rb +++ b/db/migrate/20140313092127_init_schema.rb @@ -1,4 +1,6 @@ class InitSchema < ActiveRecord::Migration + DOWNTIME = true + def up create_table "broadcast_messages", force: :cascade do |t| t.text "message", null: false -- cgit v1.2.1