Run annotate_models
This commit is contained in:
parent
55e853d31d
commit
d7e24f6521
124 changed files with 2192 additions and 19 deletions
|
|
@ -1,5 +1,33 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
# == Schema Information
|
||||
#
|
||||
# Table name: tracks
|
||||
#
|
||||
# id :bigint not null, primary key
|
||||
# cfp_active :boolean not null
|
||||
# color :string
|
||||
# description :text
|
||||
# end_date :date
|
||||
# guid :string not null
|
||||
# name :string not null
|
||||
# relevance :text
|
||||
# short_name :string not null
|
||||
# start_date :date
|
||||
# state :string default("new"), not null
|
||||
# created_at :datetime
|
||||
# updated_at :datetime
|
||||
# program_id :integer
|
||||
# room_id :integer
|
||||
# selected_schedule_id :integer
|
||||
# submitter_id :integer
|
||||
#
|
||||
# Indexes
|
||||
#
|
||||
# index_tracks_on_room_id (room_id)
|
||||
# index_tracks_on_selected_schedule_id (selected_schedule_id)
|
||||
# index_tracks_on_submitter_id (submitter_id)
|
||||
#
|
||||
class TrackSerializer < ActiveModel::Serializer
|
||||
attributes :guid, :name, :color
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue