Sha256: 359140e4eb75359d76b7a30963e4995c28b11e04fa04d870a8b6364796feb393
Contents?: true
Size: 900 Bytes
Versions: 14
Compression:
Stored size: 900 Bytes
Contents
class CaseinCreateUsers < ActiveRecord::Migration def self.up create_table :casein_users do |t| t.string :login, :null => false t.string :name t.string :email t.integer :access_level, :null => false, :default => 0 t.string :crypted_password, :null => false t.string :password_salt, :null => false t.string :persistence_token t.string :single_access_token t.string :perishable_token t.integer :login_count, :null => false, :default => 0 t.integer :failed_login_count, :null => false, :default => 0 t.datetime :last_request_at t.datetime :current_login_at t.datetime :last_login_at t.string :current_login_ip t.string :last_login_ip t.string :time_zone t.timestamps end end def self.down drop_table :casein_users end end
Version data entries
14 entries across 14 versions & 1 rubygems