Drop dead description column from documents

The description field on Document and EmployeeDocument was never
populated. Remove it from the database, GraphQL schema, and Go types.

Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Sacha Al Himdani
2026-04-07 18:49:03 +02:00
parent b63f043849
commit 221afd8b8d
3 changed files with 2 additions and 3 deletions

View File

@@ -14,3 +14,5 @@
-- TODO: drop the title column from documents.
ALTER TABLE documents ALTER COLUMN title DROP NOT NULL;
ALTER TABLE documents DROP COLUMN description;