Sha256: 9debd00877e90625cc3a96997a09b15f6c98dd81c598da5915a5b2dc64b1fae9

Contents?: true

Size: 434 Bytes

Versions: 5

Compression:

Stored size: 434 Bytes

Contents

# encoding: utf-8

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

Version data entries

5 entries across 5 versions & 1 rubygems

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