TalentBox / sequel-rails

A gem for using Sequel with Rails 5.x, 6.x, 7.x, 8.x
http://talentbox.github.io/sequel-rails/
MIT License
326 stars 81 forks source link

Fix string interpolation syntax #133

Closed henrebotha closed 7 years ago

henrebotha commented 7 years ago

rake db:schema:load has a malformed string for an error message. The message should display the name of the file and also properly namespace the display of the migrate task's name (e.g. rake sequel:migrate), but because the error string is single-quoted, this doesn't happen and the intended interpolated values are instead interpreted as literals.

JonathanTron commented 7 years ago

Hi @henrebotha, thanks for catching the issue and providing the fix!