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,5 +1,28 @@
# frozen_string_literal: true
# == Schema Information
#
# Table name: comments
#
# id :bigint not null, primary key
# body :text
# commentable_type :string
# lft :integer
# rgt :integer
# subject :string
# title :string(50) default("")
# created_at :datetime
# updated_at :datetime
# commentable_id :integer
# parent_id :integer
# user_id :integer
#
# Indexes
#
# index_comments_on_commentable_id (commentable_id)
# index_comments_on_commentable_type (commentable_type)
# index_comments_on_user_id (user_id)
#
require 'spec_helper'
describe Commercial do