frankfurter/db/migrate/001_create_currencies.rb
2016-04-11 15:05:15 +01:00

14 lines
223 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
create_table :currencies do
Date :date
String :iso_code
Float :rate
index [:date, :iso_code], unique: true
end
end
end