knex/lib/seed/stub/js.stub

5 lines
109 B
Plaintext
Raw Normal View History

2014-07-21 09:42:56 -04:00
'use strict';
exports.seed = function(knex, Promise) {
knex('tableName').insert({colName: 'rowValue'});
};