Fix Rubocop offense

This commit is contained in:
Hakan Ensari 2024-10-28 10:26:28 +01:00
parent 7922fc7131
commit 0669e74f88
No known key found for this signature in database

View File

@ -1,7 +1,7 @@
# frozen_string_literal: true
Sequel.migration do
change do
up do
create_table :currencies do
Date :date
String :iso_code
@ -10,4 +10,8 @@ Sequel.migration do
index %i[date iso_code], unique: true
end
end
down do
drop_table :currencies
end
end