fix: put the doc type back to TEXT

This commit is contained in:
Leonard Excoffier
2024-08-31 18:23:48 -04:00
parent c9612b35ae
commit 4c9b2e46c1

View File

@@ -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)
);