Revision 5ee95a8f
Von Sven Schöling vor mehr als 12 Jahren hinzugefügt
sql/Pg-upgrade2/custom_variables_sub_module_not_null.sql | ||
---|---|---|
2 | 2 |
-- @description: sub_module in custom_variables auf NOT NULL ändern. |
3 | 3 |
-- @encoding: utf-8 |
4 | 4 |
-- @depends: release_2_7_0 |
5 |
UPDATE custom_variables SET sub_module = ''; |
|
5 |
UPDATE custom_variables SET sub_module = '' WHERE sub_module IS NULL;
|
|
6 | 6 |
ALTER TABLE custom_variables ALTER COLUMN sub_module SET DEFAULT ''; |
7 | 7 |
ALTER TABLE custom_variables ALTER COLUMN sub_module SET NOT NULL; |
8 | 8 |
|
Auch abrufbar als: Unified diff
Natürlich nur die sub_modules auf '' setzen, die auch NULL sind.