1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-11 00:52:29 +01:00

4 lines
161 B
Ruby
Raw Permalink Normal View History

2015-05-05 03:10:25 +02:00
class Theme < ActiveRecord::Base
has_and_belongs_to_many :projects, join_table: :projects_themes
validates :name, presence: true, length: { maximum: 80 }
end