Make IndexableText optional

Placeholders do not have FullTitle, AlternateTitle, Tags, LocSubjects,
or TocEntries.
This commit is contained in:
Mike Colagrosso 2025-02-11 14:42:32 -07:00 committed by Alex Cabal
parent 1629d3a1a1
commit a3ce3f1ec1
3 changed files with 7 additions and 20 deletions

View file

@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `Ebooks` (
`EbookCreated` datetime NULL,
`EbookUpdated` datetime NULL,
`TextSinglePageByteCount` bigint unsigned NULL,
`IndexableText` text NOT NULL,
`IndexableText` text NULL,
`IndexableAuthors` text NOT NULL,
`IndexableCollections` text NULL,
PRIMARY KEY (`EbookId`),