Sha256: 811079979c39b873d134c6414cf90c78604f403880005d01e596a105b76246e9
Contents?: true
Size: 601 Bytes
Versions: 17
Compression:
Stored size: 601 Bytes
Contents
class SorceryCore < ActiveRecord::Migration def self.up create_table :<%= model_class_name.tableize %> do |t| t.string :username, :null => false # if you use another field as a username, for example email, you can safely remove this field. t.string :email, :default => nil # if you use this field as a username, you might want to make it :null => false. t.string :crypted_password, :default => nil t.string :salt, :default => nil t.timestamps end end def self.down drop_table :<%= model_class_name.tableize %> end end
Version data entries
17 entries across 17 versions & 1 rubygems