Sha256: 429cce5b036ce31330c8c38afe58a790f6f4390830c2ae02b006350a7d6da6bb

Contents?: true

Size: 307 Bytes

Versions: 2

Compression:

Stored size: 307 Bytes

Contents

class CreateExpositionUsers < ActiveRecord::Migration[5.1]
  def change
    create_table :exposition_users do |t|
      t.string :name
      t.string :email
      t.string :password_digest
      t.string :remember_digest

      t.timestamps null: false

      t.index :email, unique: true
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
exposition-0.0.5.7.pre.alpha db/migrate/20160112200248_create_exposition_users.rb
exposition-0.0.5.6.pre.alpha db/migrate/20160112200248_create_exposition_users.rb