change photo.filename to type text (some platforms have very long filenames for their profile photos)

This commit is contained in:
Mario
2025-04-15 08:41:10 +00:00
parent 1217ae3b3e
commit 077ca1aea5

View File

@@ -876,7 +876,7 @@ CREATE TABLE IF NOT EXISTS `photo` (
`title` char(191) NOT NULL DEFAULT '',
`description` text NOT NULL,
`album` char(191) NOT NULL DEFAULT '',
`filename` char(191) NOT NULL DEFAULT '',
`filename` text NOT NULL,
`mimetype` char(128) NOT NULL DEFAULT 'image/jpeg',
`height` smallint(6) NOT NULL DEFAULT 0 ,
`width` smallint(6) NOT NULL DEFAULT 0 ,