logout and login cart state is working now - except a little bug with icon on login

This commit is contained in:
Senad Uka
2015-03-19 06:47:41 +01:00
parent 1d16951fcf
commit 4b019d6b9e
4 changed files with 126 additions and 58 deletions

View File

@@ -23,11 +23,11 @@ ActiveRecord::Schema.define(version: 20150318174814) do
t.datetime "updated_at", null: false
t.string "anonymous_id_string"
t.integer "delivery_destination_id"
t.boolean "confirmed", default: false
t.boolean "packed", default: false
t.boolean "canceled_on_check", default: false
t.boolean "canceled_on_delivery", default: false
t.boolean "delivered", default: false
t.boolean "confirmed"
t.boolean "packed"
t.boolean "canceled_on_check"
t.boolean "canceled_on_delivery"
t.boolean "delivered"
t.text "internal_note"
end
@@ -94,6 +94,7 @@ ActiveRecord::Schema.define(version: 20150318174814) do
t.datetime "updated_at", null: false
t.string "tags"
t.json "traits"
t.integer "supplier_id"
t.decimal "weight", precision: 5, scale: 3
t.integer "special_offer_id"
end
@@ -145,6 +146,19 @@ ActiveRecord::Schema.define(version: 20150318174814) do
t.integer "order"
end
create_table "suppliers", force: :cascade do |t|
t.string "name"
t.string "address"
t.string "postal_code"
t.string "town"
t.string "phone"
t.string "contact_person"
t.string "email"
t.text "note"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "units", force: :cascade do |t|
t.string "name"
t.string "short_name", limit: 4