summaryrefslogtreecommitdiff
path: root/packages/backend/src/misc/hard-limits.ts
blob: 1039f7335ae9e053e657190050925205012fa017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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;