Run annotate_models
This commit is contained in:
parent
55e853d31d
commit
d7e24f6521
124 changed files with 2192 additions and 19 deletions
|
|
@ -1,5 +1,26 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
# == Schema Information
|
||||
#
|
||||
# Table name: venues
|
||||
#
|
||||
# id :bigint not null, primary key
|
||||
# city :string
|
||||
# country :string
|
||||
# description :text
|
||||
# guid :string
|
||||
# latitude :string
|
||||
# longitude :string
|
||||
# name :string
|
||||
# photo_file_name :string
|
||||
# picture :string
|
||||
# postalcode :string
|
||||
# street :string
|
||||
# website :string
|
||||
# created_at :datetime
|
||||
# updated_at :datetime
|
||||
# conference_id :integer
|
||||
#
|
||||
class Venue < ApplicationRecord
|
||||
belongs_to :conference
|
||||
has_one :commercial, as: :commercialable, dependent: :destroy
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue