mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-16 06:01:56 +01:00
0e4a111f81
Resolve #7779
14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
|
|
// If you change DB_* values, you must also change the DB schema.
|
|
|
|
/**
|
|
* Maximum note text length that can be stored in DB.
|
|
* Surrogate pairs count as one
|
|
*/
|
|
export const DB_MAX_NOTE_TEXT_LENGTH = 8192;
|
|
|
|
/**
|
|
* Maximum image description length that can be stored in DB.
|
|
* Surrogate pairs count as one
|
|
*/
|
|
export const DB_MAX_IMAGE_COMMENT_LENGTH = 512;
|