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