mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-29 12:12:57 -04:00
7 lines
177 B
Ruby
7 lines
177 B
Ruby
class Crop < ActiveRecord::Base
|
|
extend FriendlyId
|
|
friendly_id :system_name, use: :slugged
|
|
attr_accessible :en_wikipedia_url, :system_name
|
|
has_many :scientific_names
|
|
end
|