Run annotate_models

This commit is contained in:
Michael Ball 2021-02-20 09:57:27 -08:00
parent 55e853d31d
commit d7e24f6521
124 changed files with 2192 additions and 19 deletions

View file

@ -1,6 +1,17 @@
# frozen_string_literal: true
# Read about factories at https://github.com/thoughtbot/factory_bot
# == Schema Information
#
# Table name: rooms
#
# id :bigint not null, primary key
# guid :string not null
# name :string not null
# order :integer
# size :integer
# url :string
# venue_id :integer not null
#
FactoryBot.define do
factory :room do
name { "Room #{Faker::Address.country}" }