Sha256: ad2b5a5afed03007fdf2cd6e540493155bb95603a839f2dea6fd6e8834fa7b1f

Contents?: true

Size: 582 Bytes

Versions: 81

Compression:

Stored size: 582 Bytes

Contents

class CreateCoalescingPandaSections < ActiveRecord::Migration
  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

81 entries across 81 versions & 1 rubygems

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