Sha256: e1d68751b1dd27d8e4e41bc56c6ed31545e385c5444834522ae59345322415a0
Contents?: true
Size: 688 Bytes
Versions: 19
Compression:
Stored size: 688 Bytes
Contents
# This migration comes from canvas_oauth (originally 20121121005358) 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
19 entries across 19 versions & 2 rubygems