Create new annotations for models

This commit is contained in:
cblanc 2015-05-14 17:29:16 +01:00 committed by simplefl
parent 022da118c5
commit 56803d946f
4 changed files with 6 additions and 2 deletions

View file

@ -6,12 +6,12 @@
# title :string(255) # title :string(255)
# status :integer not null # status :integer not null
# category_id :integer # category_id :integer
# text :text # text :text(16777215)
# user_id :integer # user_id :integer
# created_at :datetime # created_at :datetime
# updated_at :datetime # updated_at :datetime
# version :integer # version :integer
# text_parsed :text # text_parsed :text(16777215)
# text_coding :integer default(0), not null # text_coding :integer default(0), not null
# #

View file

@ -9,6 +9,7 @@
# created_at :datetime # created_at :datetime
# updated_at :datetime # updated_at :datetime
# votes :integer default(0), not null # votes :integer default(0), not null
# status :integer default(0), not null
# #
class Gatherer < ActiveRecord::Base class Gatherer < ActiveRecord::Base

View file

@ -25,6 +25,7 @@
# points1 :integer # points1 :integer
# points2 :integer # points2 :integer
# hltv_id :integer # hltv_id :integer
# caster_id :string(255)
# #
class Match < ActiveRecord::Base class Match < ActiveRecord::Base

View file

@ -52,6 +52,8 @@
# steam_profile :string(255) # steam_profile :string(255)
# achievements_parsed :string(255) # achievements_parsed :string(255)
# signature_parsed :string(255) # signature_parsed :string(255)
# stream :string(255)
# layout :string(255)
# #
class Profile < ActiveRecord::Base class Profile < ActiveRecord::Base