Skip to content
Snippets Groups Projects
Commit cb1b334f authored by Vytor Calixto's avatar Vytor Calixto :space_invader:
Browse files

Remove semi collon

parent 41f051e2
No related branches found
No related tags found
1 merge request!116Release v1.0.0
Pipeline #
......@@ -31,7 +31,7 @@ classApp.use(cache('15 day'));
classApp.get('/year_range', (req, res, next) => {
req.sql.from('turma')
.field('MIN(turma.ano_censo)', 'start_year')
.field('MAX(turma.ano_censo)', 'end_year');
.field('MAX(turma.ano_censo)', 'end_year')
.where('turma.ano_censo > 2014');
next();
}, query, response('range'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment