Add annotate gem and associated rake task. Annotate models.

This commit is contained in:
Andy Allan 2017-10-22 22:18:26 +01:00
parent 44b817a6d5
commit b2a8df0bd7
47 changed files with 1030 additions and 1 deletions

View file

@ -1,3 +1,23 @@
# == Schema Information
#
# Table name: user_tokens
#
# id :integer not null, primary key
# user_id :integer not null
# token :string not null
# expiry :datetime not null
# referer :text
#
# Indexes
#
# user_tokens_token_idx (token) UNIQUE
# user_tokens_user_id_idx (user_id)
#
# Foreign Keys
#
# user_tokens_user_id_fkey (user_id => users.id)
#
class UserToken < ActiveRecord::Base
belongs_to :user