Sha256: a4360595cf7ac284a1c3b7aaa0c4f367b90c6f9d520206dd2b9eaa655c247f6c
Contents?: true
Size: 1.2 KB
Versions: 20
Compression:
Stored size: 1.2 KB
Contents
class CreateUsers < ActiveRecord::Migration def up unless table_exists?("spree_users") create_table "spree_users", :force => true do |t| t.string "crypted_password", :limit => 128 t.string "salt", :limit => 128 t.string "email" t.string "remember_token" t.string "remember_token_expires_at" t.string "persistence_token" t.string "single_access_token" t.string "perishable_token" t.integer "login_count", :default => 0, :null => false t.integer "failed_login_count", :default => 0, :null => false 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 "login" t.integer "ship_address_id" t.integer "bill_address_id" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false t.string "openid_identifier" end end end end
Version data entries
20 entries across 20 versions & 2 rubygems