Sha256: fbd9d1bda9319170c27a48f0e80672c2721bafa2db8bb27d5ab4ac196fbb83da

Contents?: true

Size: 790 Bytes

Versions: 81

Compression:

Stored size: 790 Bytes

Contents

class CreateCoalescingPandaCourses < ActiveRecord::Migration
  def change
    create_table :coalescing_panda_courses do |t|
      t.belongs_to :coalescing_panda_lti_account, null: false
      t.belongs_to :coalescing_panda_term
      t.string :name
      t.string :canvas_course_id, null: false
      t.string :sis_id
      t.datetime :start_at
      t.datetime :conclude_at
      t.string :workflow_state
      t.string :course_code

      t.timestamps
    end

    add_index :coalescing_panda_courses, [:coalescing_panda_lti_account_id, :canvas_course_id], name: :index_courses_account, unique: true
    add_index :coalescing_panda_courses, [:coalescing_panda_term_id, :canvas_course_id], name: :index_courses_term, unique: true
    add_index :coalescing_panda_courses, :sis_id
  end
end

Version data entries

81 entries across 81 versions & 1 rubygems

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