mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-03-21 12:29:03 +01:00
5 lines
119 B
Ruby
5 lines
119 B
Ruby
class Licence < ApplicationRecord
|
|
|
|
has_many :projects
|
|
validates :name, presence: true, length: { maximum: 160 }
|
|
end |