5 lines
109 B
JavaScript
Raw Normal View History

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