Checkpoint: Implémentation du résumé automatique généré par l'IA pour chaque article RSS (veille et AAP), marquage lu/non lu avec point bleu et fond teinté, bouton "Tout marquer comme lu", compteurs non lus dans la sidebar et dans les titres de page. Migration BDD : table article_reads + colonne iaResume dans veille_items et aap_items.
This commit is contained in:
11
drizzle/0008_worried_molten_man.sql
Normal file
11
drizzle/0008_worried_molten_man.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
CREATE TABLE `article_reads` (
|
||||
`id` int AUTO_INCREMENT NOT NULL,
|
||||
`userId` int NOT NULL,
|
||||
`articleType` enum('veille','aap') NOT NULL,
|
||||
`articleId` int NOT NULL,
|
||||
`readAt` timestamp NOT NULL DEFAULT (now()),
|
||||
CONSTRAINT `article_reads_id` PRIMARY KEY(`id`)
|
||||
);
|
||||
--> statement-breakpoint
|
||||
ALTER TABLE `aap_items` ADD `iaResume` text;--> statement-breakpoint
|
||||
ALTER TABLE `veille_items` ADD `iaResume` text;
|
||||
Reference in New Issue
Block a user