1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-26 13:48:33 +02:00

must be singelquotes

This commit is contained in:
sveisvei 2016-06-18 22:55:33 +02:00
parent 9a5a8646eb
commit bb9c9d1014

View File

@ -22,7 +22,7 @@ module.exports = function(db) {
return db
.select(EVENT_COLUMNS)
.from('events')
.whereRaw('data ->> "name" = ?', [name])
.whereRaw('data ->> \'name\' = ?', [name])
.orderBy('created_at', 'desc')
.map(rowToEvent);
}