This commit is contained in:
Manus Sandbox
2025-11-19 08:36:23 -05:00
parent 1313a45879
commit 5085159cf7
75 changed files with 127 additions and 15617 deletions

View File

@@ -1,13 +0,0 @@
CREATE TABLE `emailConfig` (
`id` int AUTO_INCREMENT NOT NULL,
`provider` varchar(50) NOT NULL DEFAULT 'resend',
`apiKey` text,
`fromEmail` varchar(320) NOT NULL,
`fromName` varchar(255) NOT NULL DEFAULT 'Formation Manager Itinova',
`mode` enum('simulation','production') NOT NULL DEFAULT 'simulation',
`domainVerified` boolean NOT NULL DEFAULT false,
`active` boolean NOT NULL DEFAULT true,
`createdAt` timestamp NOT NULL DEFAULT (now()),
`updatedAt` timestamp NOT NULL DEFAULT (now()) ON UPDATE CURRENT_TIMESTAMP,
CONSTRAINT `emailConfig_id` PRIMARY KEY(`id`)
);