Initial commit

This commit is contained in:
2020-06-02 23:02:01 -04:00
commit a1ade51f6b
15 changed files with 294 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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