From 5404618b2ff0e4cced18bdd460057b7380b4e81e Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 2 Jan 2023 22:13:36 -0800 Subject: [PATCH] Update 20230102160350_migrate_limit_to_boolean.rb --- db/data/20230102160350_migrate_limit_to_boolean.rb | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/db/data/20230102160350_migrate_limit_to_boolean.rb b/db/data/20230102160350_migrate_limit_to_boolean.rb index 927d6c2..948dc52 100644 --- a/db/data/20230102160350_migrate_limit_to_boolean.rb +++ b/db/data/20230102160350_migrate_limit_to_boolean.rb @@ -17,8 +17,9 @@ class MigrateLimitToBoolean < ActiveRecord::Migration[6.1] summon.limit2 = false end end - - def down - raise ActiveRecord::IrreversibleMigration - end end + + def down + raise ActiveRecord::IrreversibleMigration + end +end