Create new annotations for models

This commit is contained in:
cblanc 2015-05-14 17:29:16 +01:00 committed by simplefl
parent 51fc66bddd
commit 10b70b1438
4 changed files with 6 additions and 2 deletions

View file

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

View file

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

View file

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

View file

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