Sha256: fec95cfe86362fbe71e25d85f7bf9cdc89c56f868a62acee64377ad5f656e829
Contents?: true
Size: 392 Bytes
Versions: 92
Compression:
Stored size: 392 Bytes
Contents
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 :locale t.string :timezone t.string :tenant t.timestamps null: false end add_index :users, [:uid, :tenant], name: 'user_uid_index' end end
Version data entries
92 entries across 92 versions & 1 rubygems