Sha256: aadd8d56a3d8708a8f356e0f81d4f8c3f36e2fd0bdfb6bd2dbd176c851012fb0
Contents?: true
Size: 743 Bytes
Versions: 142
Compression:
Stored size: 743 Bytes
Contents
# # # AUTO GENERATED MIGRATION # This migration was auto generated by the CanvasSync Gem. # You can add new columns to this table, but removing or # re-naming ones created here may break Canvas Syncing. # class CreateAssignmentGroups < ActiveRecord::Migration[5.1] def change create_table :assignment_groups do |t| t.bigint :canvas_id, null: false t.bigint :canvas_course_id t.string :name t.text :rules t.integer :position t.float :group_weight t.string :workflow_state t.datetime :canvas_created_at t.datetime :canvas_updated_at t.timestamps end add_index :assignment_groups, :canvas_id, unique: true add_index :assignment_groups, :canvas_course_id end end
Version data entries
142 entries across 142 versions & 1 rubygems