add allowed_ips to api_keys

update annotations
This commit is contained in:
Sam
2014-11-20 14:53:15 +11:00
parent 98e8523eec
commit 6bed4e1bf0
17 changed files with 147 additions and 93 deletions

View File

@ -3,3 +3,20 @@ class Warning < ActiveRecord::Base
belongs_to :topic
belongs_to :created_by, class_name: 'User'
end
# == Schema Information
#
# Table name: warnings
#
# id :integer not null, primary key
# topic_id :integer not null
# user_id :integer not null
# created_by_id :integer not null
# created_at :datetime
# updated_at :datetime
#
# Indexes
#
# index_warnings_on_topic_id (topic_id) UNIQUE
# index_warnings_on_user_id (user_id)
#