From 4c9b2e46c12c4a42cb947045bef8a94f242c8294 Mon Sep 17 00:00:00 2001 From: Leonard Excoffier <48970393+excoffierleonard@users.noreply.github.com> Date: Sat, 31 Aug 2024 18:23:48 -0400 Subject: [PATCH] fix: put the doc type back to TEXT --- db_schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_schema.sql b/db_schema.sql index 24055e4..dfb9e0e 100644 --- a/db_schema.sql +++ b/db_schema.sql @@ -50,7 +50,7 @@ CREATE TABLE tag ( iord CHAR(1), -- "I" for point-in-time, "D" for duration crdr CHAR(1), -- Credit/ Debit nature, if monetary tlabel VARCHAR(512), -- Label text - doc LONGTEXT, -- Tag definition/documentation + doc TEXT, -- Tag definition/documentation PRIMARY KEY (tag, version) );