Sha256: 6c76bea2a785fcf291a354af8202518a804f2b2df4317d07aea1c7ff84b2082d

Contents?: true

Size: 611 Bytes

Versions: 77

Compression:

Stored size: 611 Bytes

Contents

class CreateCoalescingPandaAssignments < ActiveRecord::Migration
  def change
    create_table :coalescing_panda_assignments do |t|
      t.belongs_to :coalescing_panda_course, null: false
      t.string :name
      t.text :description
      t.string :canvas_assignment_id, null: false
      t.string :workflow_state
      t.float :points_possible
      t.datetime :due_at
      t.datetime :unlock_at
      t.datetime :lock_at

      t.timestamps
    end

    add_index :coalescing_panda_assignments, [:coalescing_panda_course_id, :canvas_assignment_id], name: :index_assignments_course, unique: true
  end
end

Version data entries

77 entries across 77 versions & 1 rubygems

Version Path
coalescing_panda-4.1.2 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-4.1.1 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-4.1.0 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-4.0.4 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-4.0.3 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-4.0.2 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-4.0.1 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-4.0.0 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-3.2.3 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-3.2.2 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-3.2.1 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-3.2.0 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-3.1.14 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-3.1.13 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-3.1.12 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-3.1.11 db/migrate/20141120151940_create_coalescing_panda_assignments.rb
coalescing_panda-3.1.10 db/migrate/20141120151940_create_coalescing_panda_assignments.rb