This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/sql/mysql/upgrade/2.99.5/fieldset_field_descriptions.sql

10 lines
401 B
SQL

SET FOREIGN_KEY_CHECKS=0;
ALTER TABLE `document_fields` ADD `description` TEXT NOT NULL default '';
ALTER TABLE `fieldsets` ADD `description` TEXT NOT NULL default '';
UPDATE `document_fields` SET `description` = 'The category to which the document belongs.' WHERE id = 1;
UPDATE `fieldsets` SET `description` = 'The category to which the document belongs.' WHERE id = 1;
SET FOREIGN_KEY_CHECKS=1;