Sha256: cf553e59ecdb267c9e42a0e2985fc6dc6bed6458b06338069e7afc6f6dbd6b49
Contents?: true
Size: 614 Bytes
Versions: 8
Compression:
Stored size: 614 Bytes
Contents
class CreateCanvasOauthAuthorizations < ActiveRecord::Migration 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