git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
10 lines
401 B
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;
|