File: active_record_models.rb

package info (click to toggle)
ruby-otr-activerecord 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 356 kB
  • sloc: ruby: 561; sh: 133; makefile: 6
file content (7 lines) | stat: -rw-r--r-- 122 bytes parent folder | download
1
2
3
4
5
6
7
class Category < ActiveRecord::Base
  has_many :widgets
end

class Widget < ActiveRecord::Base
  belongs_to :category
end