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