Rollback to 9d67724e
This commit is contained in:
13
drizzle/0009_polite_senator_kelly.sql
Normal file
13
drizzle/0009_polite_senator_kelly.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
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`)
|
||||
);
|
||||
Reference in New Issue
Block a user