- Omit parentheses when formatting SQL lists containing only one element (ex:
order_by(1)
->ORDER BY 1
, notORDER BY (1)
). - Use
require_relative
to improve load times.
order_by(1)
-> ORDER BY 1
, not ORDER BY (1)
).require_relative
to improve load times.