Sha256: c1da5eb7aa1a564aa5bf4529cd7b3548c83025647335dc62bf71e1a5999e044a

Contents?: true

Size: 474 Bytes

Versions: 5

Compression:

Stored size: 474 Bytes

Contents

class Create<%= user_plural_class_name %> < ActiveRecord::Migration
  def self.up
    create_table :<%= user_plural_name %> do |t|
      t.string :username
      t.string :email
    <%- if options.authlogic? -%>
      t.string :persistence_token
      t.string :crypted_password
    <%- else -%>
      t.string :password_hash
    <%- end -%>
      t.string :password_salt
      t.timestamps
    end
  end
  
  def self.down
    drop_table :<%= user_plural_name %>
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
very_nifty_generators-0.2.1 lib/generators/nifty/authentication/templates/migration.rb
very_nifty_generators-0.2.0 lib/generators/nifty/authentication/templates/migration.rb
very_nifty_generators-0.1.2 lib/generators/nifty/authentication/templates/migration.rb
very_nifty_generators-0.1.1 lib/generators/nifty/authentication/templates/migration.rb
very_nifty_generators-0.1.0 lib/generators/nifty/authentication/templates/migration.rb