Hello! I have a rails app using a mysql. Now I need to configure it with sqlite. I change database settings in config/database.yml and Gemfile file and run rake db:create rake db:migrate and did not get any errors.
But in view a have a code <%=@user.likes.size%> and get error SQLite3::SQLException: near "to": syntax error: SELECT COUNT(*) FROM "likes" WHERE ("likes".to = 1) in sqlite console sql query working with this syntax SELECT COUNT(*) FROM "likes" WHERE ("likes"."to" = 1) Why on mysql it's working, but not working in sqlite?How i can fix it?
rails -v Rails 3.0.7 ruby -v ruby 1.8.7 (2009-06-12 patchlevel 174) [universal-darwin10.0] sqlite3 -version 3.6.12