I'm relative new to Rails, so I don't know if my way to solve the problem is the correct, but there's some problem with it
I have installed in my PC MySQL, but Heroku uses PostgreSQL, so I'm designing a solution to work with both DBMS in certain problem.
I have the next code:
begin
@products_with_valid_offers = Product.joins(:variants).active.discount_valid.discount_date_valid_mySQL
rescue ActiveRecord::StatementInvalid
@products_with_valid_offers = Product.joins(:variants).active.discount_valid.discount_date_valid_postgreSQL
end
And the scopes are:
scope :active, includes([:assets, :store]).where(:active => true, :deleted_at => nil, :stores => { :deleted_at => nil, :active => true }).order("products.created_at DESC")
scope :discount_date_valid_mySQL, where('DATE_FORMAT(NOW(),"%Y-%m-%d 23:59:59") + '" BETWEEN discount_from AND discount_to')
scope :discount_date_valid_postgreSQL, where('now()::date BETWEEN discount_from AND discount_to')
As you see, I need 2 different forms to manage the date format, one with each DBMS. The issue is that the flow never enters in the exception. If @products_with_valid_offers is a SQL Error in MySQL, never enters to the rescue block to execute the PostgreSQL line, and it returns an error.
Some help, please?. :D