added Create User

This commit is contained in:
2026-01-23 09:24:05 +07:00
parent a8745327d6
commit 51c26f3704
15 changed files with 500 additions and 46 deletions

View File

@@ -49,20 +49,6 @@ async function main() {
skipDuplicates: true,
});
console.log('---------------Created settings-----------------');
// // Clear existing todos
// await prisma.todo.deleteMany()
// // Create example todos
// const todos = await prisma.todo.createMany({
// data: [
// { title: 'Buy groceries' },
// { title: 'Read a book' },
// { title: 'Workout' },
// ],
// })
// console.log(`✅ Created ${todos.count} todos`)
}
main()