11 lines
206 B
Ruby
11 lines
206 B
Ruby
class CreateTransactionAbos < ActiveRecord::Migration
|
|
def change
|
|
create_table :transaction_abos do |t|
|
|
t.decimal :amount
|
|
t.string :number
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|