blob: 4805d8a22e26e2b4e1b86b4ba69e8b8be9625aca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
UPDATE director_deployment_log SET startup_log = LEFT(startup_log, 20480) || '
[..] shortened '
|| (LENGTH(startup_log) - 40960)
|| ' bytes by Director on schema upgrade [..]
' || RIGHT(startup_log, 20480) WHERE LENGTH(startup_log) > 61440;
VACUUM FULL director_deployment_log;
INSERT INTO director_schema_migration
(schema_version, migration_time)
VALUES (102, NOW());
|