Sha256: 29263fd1d22c7c4cd1504aea512210abc92d1525c8be819153a9b0b97a3aee6b
Contents?: true
Size: 560 Bytes
Versions: 8
Compression:
Stored size: 560 Bytes
Contents
class CreateCoalescingPandaUsers < ActiveRecord::Migration def change create_table :coalescing_panda_users do |t| t.belongs_to :coalescing_panda_lti_account t.string :name t.string :email t.string :roles t.string :workflow_state t.string :sis_id t.string :canvas_user_id t.timestamps end add_index :coalescing_panda_users, :coalescing_panda_lti_account_id, name: :index_users_account add_index :coalescing_panda_users, :canvas_user_id add_index :coalescing_panda_users, :sis_id end end
Version data entries
8 entries across 8 versions & 1 rubygems