Sha256: fc24edf2a8f449d0fdac8dbaa7e7e84746653a64821b9d9d3dde04cb6cceba32
Contents?: true
Size: 475 Bytes
Versions: 25
Compression:
Stored size: 475 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
25 entries across 22 versions & 10 rubygems