Revision 640adf58
Von Moritz Bunkus vor fast 11 Jahren hinzugefügt
sql/Pg-upgrade2/project_bob_attributes.sql | ||
---|---|---|
1 | 1 |
-- @tag: project_bob_attributes |
2 | 2 |
-- @description: Projekte: Zusätzliche Tabellen und Spalten |
3 | 3 |
-- @depends: project_customer_type_valid |
4 |
-- @charset: utf-8 |
|
5 | 4 |
|
6 | 5 |
-- changes over bob: |
7 | 6 |
-- no scon/support_contract values here |
... | ... | |
89 | 88 |
CREATE TRIGGER mtime_project_roles BEFORE UPDATE ON project_roles FOR EACH ROW EXECUTE PROCEDURE set_mtime(); |
90 | 89 |
CREATE TRIGGER mtime_project_participants BEFORE UPDATE ON project_participants FOR EACH ROW EXECUTE PROCEDURE set_mtime(); |
91 | 90 |
CREATE TRIGGER mtime_project_phase_paticipants BEFORE UPDATE ON project_phase_participants FOR EACH ROW EXECUTE PROCEDURE set_mtime(); |
92 |
|
sql/Pg-upgrade2/project_types.sql | ||
---|---|---|
1 | 1 |
-- @tag: project_types |
2 | 2 |
-- @description: Tabelle für Projekttypen |
3 | 3 |
-- @depends: release_3_0_0 |
4 |
-- @charset: utf-8 |
|
5 | 4 |
CREATE TABLE project_types ( |
6 | 5 |
id SERIAL, |
7 | 6 |
position INTEGER NOT NULL, |
sql/Pg-upgrade2/requirement_specs.sql | ||
---|---|---|
1 | 1 |
-- @tag: requirement_specs |
2 | 2 |
-- @description: Pflichtenhefte |
3 | 3 |
-- @depends: release_3_0_0 |
4 |
-- @charset: utf-8 |
|
5 | 4 |
|
6 | 5 |
-- Nur für Entwicklungszwecke: |
7 | 6 |
|
sql/Pg-upgrade2/requirement_specs_section_templates.sql | ||
---|---|---|
1 | 1 |
-- @tag: requirement_specs_section_templates |
2 | 2 |
-- @description: requirement_specs_section_templates |
3 | 3 |
-- @depends: release_3_0_0 requirement_specs |
4 |
-- @charset: utf-8 |
|
5 | 4 |
|
6 | 5 |
ALTER TABLE requirement_specs ALTER COLUMN type_id DROP NOT NULL; |
7 | 6 |
ALTER TABLE requirement_specs ALTER COLUMN status_id DROP NOT NULL; |
Auch abrufbar als: Unified diff
Unterstützung für andere Datenbankencodings als Unicode/UTF-8 entfernt – Teil 2