7 lines
140 B
Ruby
7 lines
140 B
Ruby
|
class FormsRole < ApplicationRecord
|
||
|
belongs_to :form
|
||
|
belongs_to :role
|
||
|
attribute :note, :string
|
||
|
attribute :date_completed, :date
|
||
|
end
|