internetee-registry/db/migrate/20150410124724_create_accounts.rb
2021-04-26 18:54:26 +05:00

11 lines
221 B
Ruby

class CreateAccounts < ActiveRecord::Migration[6.0]
def change
create_table :accounts do |t|
t.integer :registrar_id
t.string :account_type
t.decimal :balance
t.timestamps
end
end
end