Skip to content

Commit

Permalink
feat: knowledgemanagement change answer column to longtext
Browse files Browse the repository at this point in the history
  • Loading branch information
FHenry committed Jan 19, 2024
1 parent f3d97a8 commit c477a72
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion htdocs/install/mysql/migration/19.0.0-20.0.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -205,4 +205,6 @@ ALTER TABLE llx_c_tva ADD COLUMN type_vat smallint NOT NULL DEFAULT 0 AFTER fk_p

ALTER TABLE llx_categorie ADD COLUMN position integer DEFAULT 0 AFTER color;

ALTER TABLE llx_product DROP COLUMN onportal;
ALTER TABLE llx_product DROP COLUMN onportal;

ALTER TABLE llx_knowledgemanagement_knowledgerecord MODIFY COLUMN answer longtext;
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ CREATE TABLE llx_knowledgemanagement_knowledgerecord(
import_key varchar(14),
model_pdf varchar(255),
question text NOT NULL,
answer text,
answer longtext,
url varchar(255),
fk_ticket integer,
fk_c_ticket_category integer,
Expand Down

0 comments on commit c477a72

Please sign in to comment.