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-4.1.20 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.19 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.18 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.17 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.16 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.15 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.0.6 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.0.5 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.14 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.13 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.12 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.11 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.10 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.9 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.8 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.7 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.6 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.5 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.4 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-4.1.3 db/migrate/20141120151432_create_coalescing_panda_sections.rb