fix permissions

This commit is contained in:
Matthias Hochmeister
2026-03-24 17:59:28 +01:00
parent f228dd67ba
commit 86cd7b4ce0

View File

@@ -6,7 +6,7 @@ CREATE TABLE IF NOT EXISTS issue_statusmeldungen (
inhalt TEXT, inhalt TEXT,
schwere VARCHAR(20) NOT NULL DEFAULT 'info', schwere VARCHAR(20) NOT NULL DEFAULT 'info',
aktiv BOOLEAN NOT NULL DEFAULT true, aktiv BOOLEAN NOT NULL DEFAULT true,
erstellt_von VARCHAR(255) REFERENCES users(id), erstellt_von UUID REFERENCES users(id),
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
); );