Sha256: ba9626431dff91f342835487c79648bb0324e7e357d337591699b6c7620997bb

Contents?: true

Size: 483 Bytes

Versions: 4

Compression:

Stored size: 483 Bytes

Contents

# Attributes:
# * id [integer, primary, not null] - primary key
# * boo_id [integer] - belongs to :boo
# * created_at [datetime, not null] - creation time
# * foo_id [integer] - my handcrafted description
# * poly_id [integer] - belongs to :poly (polymorphic)
# * poly_type [string] - belongs to :poly (polymorphic)
# * updated_at [datetime, not null] - last update time
class Roo < ActiveRecord::Base
  belongs_to :boo
  belongs_to :poly, :polymorphic => true
  belongs_to :foo
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
annotator-0.0.10 test/assets/roo_reannotated.rb
annotator-0.0.9 test/assets/roo_reannotated.rb
annotator-0.0.8.1 test/assets/roo_reannotated.rb
annotator-0.0.8 test/assets/roo_reannotated.rb