Sha256: e5d6774f5df936446ac9e0a39e0eee39805197938916c42ab489377aaa520849

Contents?: true

Size: 551 Bytes

Versions: 8

Compression:

Stored size: 551 Bytes

Contents

class CreateCoalescingPandaSections < ActiveRecord::Migration
  def change
    create_table :coalescing_panda_sections do |t|
      t.belongs_to :coalescing_panda_course
      t.string :name
      t.string :canvas_section_id
      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
    add_index :coalescing_panda_sections, :canvas_section_id
    add_index :coalescing_panda_sections, :sis_id
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
coalescing_panda-3.1.5 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-3.1.4 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-3.1.3 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-3.1.2 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-3.1.1 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-3.1.0 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-3.0.1 db/migrate/20141120151432_create_coalescing_panda_sections.rb
coalescing_panda-3.0.0 db/migrate/20141120151432_create_coalescing_panda_sections.rb