exports.seed = function (knex) { // Deletes ALL existing entries return knex('meeting') .del() .then(function () { // Inserts seed entries return knex('meeting').insert([ { id: '03ac7a10-316f-46e8-bb55-8611e7e5b31c', title: 'Worldwide meeting I', description: "Let's find the best ethical growth hacking technics together. Yeah, fun.", start_time: '2025-02-19T15:00:00Z', duration: 90, status: 0, password: 'simple-meeting-password', }, { id: '2e8f3748-ea5a-4d20-b9a8-683ac65f5634', title: 'Worldwide meeting II', description: "Let's find the best ethical growth hacking technics together. Yeah, fun.", start_time: '2025-05-18T15:00:00Z', duration: 90, status: 0, password: 'simple-meeting-password', }, { id: 'a8344a68-7961-4bff-bb3b-b288f3abcf1c', title: 'Worldwide meeting III', description: "Let's find the best ethical growth hacking technics together. Yeah, fun.", start_time: '2025-10-18T15:00:00Z', duration: 90, status: 0, password: 'simple-meeting-password', }, { id: 'aa639e05-be03-4202-a18e-aae3bc5153f0', title: 'Worldwide meeting IV', description: "Let's find the best ethical growth hacking technics together. Yeah, fun.", start_time: '2025-06-16T15:00:00Z', duration: 90, status: 0, password: 'simple-meeting-password', }, { id: 'a4a9b71a-91af-4e35-8377-96f56fa7f6b8', title: 'Worldwide meeting V', description: "Let's find the best ethical growth hacking technics together. Yeah, fun.", start_time: '2025-04-27T15:00:00Z', duration: 90, status: 0, password: 'simple-meeting-password', }, { id: '741f300a-a137-499d-b725-73770ac6fe70', title: 'Worldwide meeting VI', description: "Let's find the best ethical growth hacking technics together. Yeah, fun.", start_time: ' 2025-08-21T15:00:00Z', duration: 90, status: 0, password: 'simple-meeting-password', }, ]); }); };