Sha256: f0b542c0a8959ab13248cf309830c6963831ba3e8494f7025081ff576fe80630
Contents?: true
Size: 382 Bytes
Versions: 18
Compression:
Stored size: 382 Bytes
Contents
class CreateApiKeys < ActiveRecord::Migration def change create_table :api_keys do |t| t.integer :user_id t.string :access_token t.string :scope t.string :oauth_code t.datetime :expired_at t.datetime :created_at end add_index :api_keys, :user_id add_index :api_keys, :access_token add_index :api_keys, :oauth_code end end
Version data entries
18 entries across 18 versions & 1 rubygems