re-add account migration

This commit is contained in:
Yan
2017-06-08 19:12:11 +06:30
parent 42a29296c7
commit 43e89cefda

View File

@@ -0,0 +1,10 @@
class CreateAccounts < ActiveRecord::Migration[5.1]
def change
create_table :accounts do |t|
t.string :title
t.string :account_type
t.timestamps
end
end
end