Cretate delete project confirm dialog

This commit is contained in:
Takeshi Kimata
2024-05-26 14:46:00 +09:00
parent 691684e9b7
commit 3ce68ebd30
7 changed files with 25 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ module.exports = {
const hashedPassword = await bcrypt.hash('password', 10);
// Add projects table records
await queryInterface.bulkInsert('Users', [
await queryInterface.bulkInsert('users', [
{
email: 'admin@testplat.com',
password: hashedPassword,
@@ -20,7 +20,7 @@ module.exports = {
]);
// Add projects table records
await queryInterface.bulkInsert('Projects', [
await queryInterface.bulkInsert('projects', [
{
name: 'TestPlat Test',
detail: "Test Plat's Manual test",