tab/db/migrate/20150908091546_create_transactions.rb
2015-09-08 11:44:07 +02:00

14 lines
407 B
Ruby

class CreateTransactions < ActiveRecord::Migration
def change
create_table :transactions do |t|
t.references :debtor, index: true, foreign_key: true, null: false
t.references :creditor, index: true, foreign_key: true, null: false
t.integer :amount, null: false, default: 0
t.string :origin, null: false
t.string :message
t.timestamps null: false
end
end
end