Sha256: d1f3484669f461f7175ade227793cf429ee11e3205776fa3b74ac37bd2b015c5

Contents?: true

Size: 602 Bytes

Versions: 27

Compression:

Stored size: 602 Bytes

Contents

class CreateCoalescingPandaSections < CoalescingPanda::MiscHelper::MigrationClass
  def change
    create_table :coalescing_panda_sections do |t|
      t.belongs_to :coalescing_panda_course, null: false
      t.string :name
      t.string :canvas_section_id, null: false
      t.string :sis_id
      t.string :workflow_state
      t.datetime :start_at
      t.datetime :end_at

      t.timestamps
    end

    add_index :coalescing_panda_sections, [:coalescing_panda_course_id, :canvas_section_id], name: :index_sections_course, unique: true
    add_index :coalescing_panda_sections, :sis_id
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

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