8 lines
268 B
SQL
8 lines
268 B
SQL
CREATE TABLE `formateurs` (
|
|
`id` int AUTO_INCREMENT NOT NULL,
|
|
`nom` varchar(255) NOT NULL,
|
|
`createdAt` timestamp NOT NULL DEFAULT (now()),
|
|
`updatedAt` timestamp NOT NULL DEFAULT (now()) ON UPDATE CURRENT_TIMESTAMP,
|
|
CONSTRAINT `formateurs_id` PRIMARY KEY(`id`)
|
|
);
|