mirror of
https://github.com/knex/knex.git
synced 2025-07-08 01:21:05 +00:00
5 lines
109 B
Plaintext
5 lines
109 B
Plaintext
'use strict';
|
|
|
|
exports.seed = function(knex, Promise) {
|
|
knex('tableName').insert({colName: 'rowValue'});
|
|
}; |