Class: CreateGradingPeriodGroups
- Inherits:
-
Object
- Object
- CreateGradingPeriodGroups
- Defined in:
- lib/canvas_sync/generators/templates/migrations/create_grading_period_groups.rb
Overview
<%= autogenerated_migration_warning %>
Instance Method Summary collapse
Instance Method Details
#change ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/canvas_sync/generators/templates/migrations/create_grading_period_groups.rb', line 4 def change create_table :grading_period_groups do |t| t.bigint :canvas_id, null: false t.string :title t.boolean :weighted t.boolean :display_totals_for_all_grading_periods t.string :workflow_state t. end add_index :grading_period_groups, :canvas_id, unique: true end |