Sha256: 44d277bd9bcefb3bffce3b408f26e9843f803382fa5e3c6dcd67240be5bf93e6
Contents?: true
Size: 607 Bytes
Versions: 58
Compression:
Stored size: 607 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 CreateUsers < ActiveRecord::Migration[5.1] def change create_table :users do |t| t.bigint :canvas_id, null: false t.string :email t.string :first_name t.string :last_name t.string :workflow_state t.string :login_id t.string :name t.string :sortable_name t.timestamps end add_index :users, :canvas_id, unique: true end end
Version data entries
58 entries across 58 versions & 1 rubygems