Files
sx-fc/db/migrate/20170331024747_create_accounts.rb
2017-06-06 17:29:34 +06:30

11 lines
188 B
Ruby

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