tab/app/models/transaction.rb

19 lines
487 B
Ruby
Raw Normal View History

2015-09-08 09:44:40 +00:00
# == Schema Information
#
# Table name: transactions
#
# id :integer not null, primary key
# debtor_id :integer not null
# creditor_id :integer not null
# amount :integer default(0), not null
# origin :string not null
# message :string
# created_at :datetime not null
# updated_at :datetime not null
#
2015-09-08 09:30:11 +00:00
class Transaction < ActiveRecord::Base
belongs_to :debtor
belongs_to :creditor
end