2015-09-08 11:30:11 +02:00
|
|
|
class CreateTransactions < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
create_table :transactions do |t|
|
2015-09-08 15:37:02 +02:00
|
|
|
t.references :debtor, index: true, null: false
|
|
|
|
t.references :creditor, index: true, null: false
|
2015-09-08 11:44:07 +02:00
|
|
|
t.integer :amount, null: false, default: 0
|
|
|
|
t.string :origin, null: false
|
2015-09-08 11:30:11 +02:00
|
|
|
t.string :message
|
|
|
|
|
|
|
|
t.timestamps null: false
|
|
|
|
end
|
2015-09-08 15:37:02 +02:00
|
|
|
|
2015-09-08 15:42:08 +02:00
|
|
|
add_foreign_key :transactions, :users, column: :creditor_id
|
|
|
|
add_foreign_key :transactions, :users, column: :debtor_id
|
2015-09-08 11:30:11 +02:00
|
|
|
end
|
|
|
|
end
|