Sha256: 67c263fc0599f63a84f90dd1e5109ef9a07a956e1cc99d4ee446f62cd0c1f58d
Contents?: true
Size: 336 Bytes
Versions: 55
Compression:
Stored size: 336 Bytes
Contents
class CreateIdentities < ActiveRecord::Migration[4.2] def change create_table :identities do |t| t.string :name t.string :email t.string :password_digest t.references :profile, index: true t.timestamps null: false end add_index :identities, :name add_index :identities, :email end end
Version data entries
55 entries across 55 versions & 6 rubygems