Newer
Older
dmpopidor / app / models / structured_data_schema.rb
@Quentin SONREL Quentin SONREL on 20 Jan 2020 460 bytes Added structured schema/answers models and tables
# == Schema Information
#
# Table name: structured_data_schemas
#
#  id         :integer          not null, primary key
#  label      :string
#  name       :string
#  version    :integer
#  schema     :json
#  org_id     :integer
#  object     :string
#  created_at :datetime         not null
#  updated_at :datetime         not null
#

class StructuredDataSchema < ActiveRecord::Base
  belongs_to :org
  has_many :structured_answers
  has_many :questions
end