Sha256: 93ec3af583ce133196355f3d894826035c85771250fc653e2df301fd5599f6fe

Contents?: true

Size: 703 Bytes

Versions: 80

Compression:

Stored size: 703 Bytes

Contents

class CreateCoalescingPandaEnrollments < ActiveRecord::Migration
  def change
    create_table :coalescing_panda_enrollments do |t|
      t.belongs_to :coalescing_panda_user, null: false
      t.belongs_to :coalescing_panda_section, null: false
      t.string :workflow_state
      t.string :sis_id
      t.string :canvas_enrollment_id, null: false
      t.string :enrollment_type
      t.datetime :start_at
      t.datetime :end_at

      t.timestamps
    end

    add_index :coalescing_panda_enrollments, [:coalescing_panda_user_id, :coalescing_panda_section_id, :enrollment_type], name: :index_enrollments_user_and_section, unique: true
    add_index :coalescing_panda_enrollments, :sis_id
  end
end

Version data entries

80 entries across 80 versions & 1 rubygems

Version Path
coalescing_panda-5.0.4 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-5.0.3 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-5.0.2 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-5.0.1 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-5.0.0 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-5.0.0.beta.2 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-5.0.0.beta.1 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-4.8.0.beta.1 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-4.7.0 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-4.6.1 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-4.6.0 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-4.6.0.rc3 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-4.6.0.rc2 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-4.6.0.rc1 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-4.5.7 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-4.5.6 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-4.5.5 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-4.5.4 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-4.5.3 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb
coalescing_panda-4.5.2 db/migrate/20141120153135_create_coalescing_panda_enrollments.rb