Sha256: fc02239940f02b3023e02b0457861685e0a838a3310e1fbaa22843ba7aef6848
Contents?: true
Size: 619 Bytes
Versions: 8
Compression:
Stored size: 619 Bytes
Contents
class CreateCanvasOauthAuthorizations < ActiveRecord::Migration[4.2] def change create_table "canvas_oauth_authorizations", :force => true do |t| t.integer "canvas_user_id", :limit => 8 t.string "tool_consumer_instance_guid", :null => false t.string "token" t.datetime "last_used_at" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end add_index :canvas_oauth_authorizations, [:canvas_user_id, :tool_consumer_instance_guid], name: 'index_canvas_oauth_auths_on_user_id_and_tciguid' end end
Version data entries
8 entries across 8 versions & 1 rubygems