You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should optimize the index query to return just the lesson with the instrument name string and the section name string for the current objective. Something along the lines of
select lessons.*, section.currentfrom lessons inner join (select current, lesson_id from sections) as section onsection.lesson_id=lessons.idandsection.current== true;
Perhaps using Arel if it makes sense.
The text was updated successfully, but these errors were encountered:
We should optimize the index query to return just the lesson with the instrument name string and the section name string for the current objective. Something along the lines of
Perhaps using Arel if it makes sense.
The text was updated successfully, but these errors were encountered: