Sha256: e6973280c1b03b50447074c17d7e805257b72cef2181110de74f982f028887ac
Contents?: true
Size: 637 Bytes
Versions: 134
Compression:
Stored size: 637 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 CreateGroupMemberships < ActiveRecord::Migration[5.1] def change create_table :group_memberships do |t| t.bigint :canvas_id, null: false t.bigint :canvas_user_id, null: false t.bigint :canvas_group_id, null: false t.string :group_sis_id t.string :user_sis_id t.string :workflow_state t.timestamps end add_index :group_memberships, :canvas_id, unique: true end end
Version data entries
134 entries across 134 versions & 1 rubygems