Files
sx-fc/db/migrate/2017031024747_create_accounts.rb
2017-06-08 09:53:04 +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