Sha256: 215f2a78964d880dc3a7bd4e8c4ab61716d18205aca29d980b2cd7a7b0910b99
Contents?: true
Size: 670 Bytes
Versions: 8
Compression:
Stored size: 670 Bytes
Contents
class CreateCoalescingPandaEnrollments < ActiveRecord::Migration def change create_table :coalescing_panda_enrollments do |t| t.belongs_to :coalescing_panda_user t.belongs_to :coalescing_panda_section t.string :workflow_state t.string :sis_id t.string :canvas_enrollment_id t.datetime :start_at t.datetime :end_at t.timestamps end add_index :coalescing_panda_enrollments, [:coalescing_panda_user_id, :coalescing_panda_section_id], name: :index_enrollments_user_and_assignment add_index :coalescing_panda_enrollments, :canvas_enrollment_id add_index :coalescing_panda_enrollments, :sis_id end end
Version data entries
8 entries across 8 versions & 1 rubygems