Sha256: f4fd6d055f0756bed8b258ed61ffe5f2c9221c102cee564bf1279c323a1294ee

Contents?: true

Size: 253 Bytes

Versions: 1

Compression:

Stored size: 253 Bytes

Contents

class Acceptance < ActiveRecord::Base
  
  self.table_name = "acceptances"
  self.primary_key = 'id'

  belongs_to :sharing, :inverse_of => :acceptance
  belongs_to :agent, :inverse_of => :acceptances

  def describe_id
  	"Acceptance ##{id}"
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
civic311_test3-0.0.2 app/models/acceptance.rb