diff --git a/db/migrate/20251126002711_add_return_to_to_login_attempts.rb b/db/migrate/20251126002711_add_return_to_to_login_attempts.rb new file mode 100644 index 0000000..e0c4159 --- /dev/null +++ b/db/migrate/20251126002711_add_return_to_to_login_attempts.rb @@ -0,0 +1,5 @@ +class AddReturnToToLoginAttempts < ActiveRecord::Migration[8.0] + def change + add_column :login_attempts, :return_to, :string, if_not_exists: true + end +end