dijkstra-backend/data/seeds/01-countries.js

13 lines
190 B
JavaScript
Raw Normal View History

2020-02-07 16:55:43 +00:00
exports.seed = function(knex) {
return knex('countries').truncate()
.then(function () {
return knex('countries').insert([
{
id: 1,
name: 'Belgium',
}
]);
});
};