Reputation: 1
I am trying to install and run Spree on my local machine by following the steps mentioned in Getting started with Spree - http://spreecommerce.com/documentation/getting_started.html
However, when I start the server I get the following error (main page)
ActiveRecord::StatementInvalid in ProductsController#index
Mysql2::Error: Unknown column 'products.individual_sale' in 'where clause': SELECT products
.* FROM products
WHERE (products.deleted_at is NULL) AND (products.individual_sale = 1) AND (products.available_on <= '2011-04-01 14:50:07')
Can someone please help me out with this?
Installed with sample data, empty shop works ok.
Rails 3.0.5 ruby 1.8.7
Upvotes: 0
Views: 712
Reputation: 1370
Run the following:
rails g spree_product_assembly:install
rake db:migrate
Upvotes: 4