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
connection.query('SELECT `id` FROM `users`', (err, rows) => {
if (err) {
throw err;
}
a.series(rows.map(row => function(callback) {
connection.query('INSERT INTO `trophy` (`id`,`filename`,`name`) VALUES (?,?,?)', [row.id, 'participated2016', 'Participated in the 2016 Contest'], callback);