Files
sx-fc/db/migrate/20170602101727_create_accounts.rb
2017-06-02 19:16:14 +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