2020-01-21 06:39:28 +00:00
|
|
|
|
|
|
|
exports.seed = function(knex) {
|
|
|
|
// Deletes ALL existing entries
|
|
|
|
return knex('time_setting').del()
|
|
|
|
.then(function () {
|
|
|
|
// Inserts seed entries
|
|
|
|
return knex('time_setting').insert([
|
2020-05-11 00:08:13 +00:00
|
|
|
{main_time: 'untimed', time_period: 1, period_length: 0, overtime: 'untimed', overtime_period: 0, overtime_length: 0},
|
2020-01-21 06:39:28 +00:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
};
|