data-transfer-test/db/migrate/20200529011930_create_rate_...

10 lines
222 B
Ruby
Raw Permalink Normal View History

2020-06-03 03:02:01 +00:00
class CreateRateTable < ActiveRecord::Migration[6.0]
def change
create_table :rates do |t|
t.decimal :download
t.decimal :upload
t.datetime :created_at
t.datetime :updated_at
end
end
end