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

@ -1,3 +1,17 @@
class UserField < ActiveRecord::Base
validates_presence_of :name, :description, :field_type
end
# == Schema Information
#
# Table name: user_fields
#
# id :integer not null, primary key
# name :string(255) not null
# field_type :string(255) not null
# created_at :datetime
# updated_at :datetime
# editable :boolean default(FALSE), not null
# description :string(255) not null
# required :boolean default(TRUE), not null
#