13 lines
190 B
JavaScript
13 lines
190 B
JavaScript
|
|
exports.seed = function(knex) {
|
|
return knex('countries').truncate()
|
|
.then(function () {
|
|
return knex('countries').insert([
|
|
{
|
|
id: 1,
|
|
name: 'Belgium',
|
|
}
|
|
]);
|
|
});
|
|
};
|