13 lines
336 B
Ruby
13 lines
336 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: sections
|
|
#
|
|
# id :integer not null, primary key
|
|
# description :text not null
|
|
# title :text not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
class Section < ApplicationRecord
|
|
has_many :questions
|
|
end
|