knex/lib/seed/stub/js.stub
2014-07-21 09:42:56 -04:00

5 lines
109 B
Plaintext

'use strict';
exports.seed = function(knex, Promise) {
knex('tableName').insert({colName: 'rowValue'});
};