Sha256: 2d7fa8a3891d2c08a88ccff5d5e844e8dcadacae87f6d461e04cd602f721a28b

Contents?: true

Size: 444 Bytes

Versions: 22

Compression:

Stored size: 444 Bytes

Contents

class <%= migration_class_name %> < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>]
  def change
    create_table :<%= table_name %> do |t|
      t.string :email, null: false
      t.string :password_digest, null: false
      t.string :session_token, null: false

      t.timestamps
    end

    add_index :<%= table_name %>, :email, unique: true
    add_index :<%= table_name %>, :session_token, unique: true
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
authentication-zero-0.0.22 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.21 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.20 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.19 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.18 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.17 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.16 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.15 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.14 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.13 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.12 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.11 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.10 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.9 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.8 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.7 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.6 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.5 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.4 lib/generators/authentication/templates/migration.rb.tt
authentication-zero-0.0.3 lib/generators/authentication/templates/migration.rb.tt