Sha256: 483b1474e1748dc2cf570b6283e4f37fde6d4ad74f72fca6637000ac15a6270e
Contents?: true
Size: 433 Bytes
Versions: 7
Compression:
Stored size: 433 Bytes
Contents
# This migration comes from maestrano_connector_rails_engine (originally 20151122162100) class CreateUsers < ActiveRecord::Migration def change create_table :users do |t| t.string :provider t.string :uid t.string :first_name t.string :last_name t.string :email t.string :tenant t.timestamps null: false end add_index :users, [:uid, :tenant], name: 'user_uid_index' end end
Version data entries
7 entries across 7 versions & 1 rubygems