Sha256: 087bc67b862c9a10e032c4dc7de438b6256c2976458bf436dbe115a6e99904e1
Contents?: true
Size: 652 Bytes
Versions: 5
Compression:
Stored size: 652 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.string "refresh_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
5 entries across 5 versions & 1 rubygems