mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
11 lines
216 B
Ruby
11 lines
216 B
Ruby
class CreateAccounts < ActiveRecord::Migration
|
|
def change
|
|
create_table :accounts do |t|
|
|
t.integer :registrar_id
|
|
t.string :account_type
|
|
t.decimal :balance
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|