Sha256: 4981d5b23aab6241ecb23cc48925d1d122911a68d74db06b174e99636b7293e2
Contents?: true
Size: 726 Bytes
Versions: 81
Compression:
Stored size: 726 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 CreateGradingPeriods < ActiveRecord::Migration[5.1] def change create_table :grading_periods do |t| t.bigint :canvas_id, null: false t.string :title t.float :weight t.datetime :start_date t.datetime :end_date t.datetime :close_date t.bigint :canvas_grading_period_group_id t.string :workflow_state t.timestamps end add_index :grading_periods, :canvas_id, unique: true add_index :grading_periods, :canvas_grading_period_group_id end end
Version data entries
81 entries across 81 versions & 1 rubygems