Sha256: ff011f6101e2e5f1057891a16c59be849db90bd2754ae0437ea7f78be3ac655e

Contents?: true

Size: 810 Bytes

Versions: 27

Compression:

Stored size: 810 Bytes

Contents

class CreateCoalescingPandaCourses < CoalescingPanda::MiscHelper::MigrationClass
  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

27 entries across 27 versions & 1 rubygems

Version Path
coalescing_panda-5.3.0 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.2.2 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.2.2.beta1 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.2.1 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.2.0 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.2.0.beta2 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.2.0.beta1 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.1.13 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.1.12 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.1.11 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.1.10 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.1.9 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.1.8 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.1.7 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.1.6 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.1.5 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.1.4 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.1.3.beta.2 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.1.3.beta.1 db/migrate/20141119225721_create_coalescing_panda_courses.rb
coalescing_panda-5.1.3 db/migrate/20141119225721_create_coalescing_panda_courses.rb