Sha256: 32fa8ddcd5ffe459b8f05590bfeb249246acb6ea1fb24d51a4b2157a4ef6ac72
Contents?: true
Size: 547 Bytes
Versions: 17
Compression:
Stored size: 547 Bytes
Contents
class SorceryCore < ActiveRecord::Migration def self.up create_table :users 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 :users end end
Version data entries
17 entries across 14 versions & 5 rubygems