From 2f8126d73208dc87b320cf70f6dfa4230145b2c3 Mon Sep 17 00:00:00 2001 From: Karina Kwiatek Date: Sun, 23 Oct 2022 16:30:05 +0200 Subject: [PATCH] Supress lint errors in Add RPush migration --- db/migrate/20220909161542_add_rpush.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/db/migrate/20220909161542_add_rpush.rb b/db/migrate/20220909161542_add_rpush.rb index f90a4934..fbc0af97 100644 --- a/db/migrate/20220909161542_add_rpush.rb +++ b/db/migrate/20220909161542_add_rpush.rb @@ -41,6 +41,8 @@ class AddRpush < ActiveRecord::Migration[5.0] end end + # rubocop:disable Rails/MigrationClassName + class CreateRapnsNotifications < ActiveRecord::Migration[5.0] def self.up create_table :rapns_notifications do |t| @@ -335,4 +337,6 @@ class AddRpush < ActiveRecord::Migration[5.0] remove_column :rpush_notifications, :fail_after end end + + # rubocop:enable all end