This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".
The branch, 6.1 has been updated
via 25419653d404a62b4f1622ffb2125fd83f1ccce0 (commit)
from 0d9bd1fcf3d3a987e38b1d1d21dae77f7ed3d8d3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=25419653d404a62b4f1622ffb2125fd83f1ccce0
commit 25419653d404a62b4f1622ffb2125fd83f1ccce0
Author: Ralf Habacker <[email protected]>
Date: Tue Mar 9 10:20:41 2021 +0100
src/db: Remove usage of 'with oids' required for postgresql 12
diff --git a/src/db/1-fusionforge-init.sql b/src/db/1-fusionforge-init.sql
index 4d6312d..458cb15 100644
--- a/src/db/1-fusionforge-init.sql
+++ b/src/db/1-fusionforge-init.sql
@@ -2742,7 +2742,7 @@ CREATE TABLE project_tags
(
group_id integer NOT NULL,
name text NOT NULL
-) WITH OIDS;
+);
CREATE VIEW activity_vw AS
@@ -7772,7 +7772,7 @@ CREATE TABLE artifact_workflow_event
REFERENCES artifact_extra_field_list (group_artifact_id,
extra_field_id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE CASCADE
)
-WITH OIDS;
+;
-- ALTER TABLE artifact_workflow_event OWNER TO gforge;
-- Index: artifact_workflow_event_index
@@ -7795,7 +7795,7 @@ CREATE TABLE artifact_workflow_roles
REFERENCES artifact_workflow_event (event_id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE CASCADE
)
-WITH OIDS;
+;
-- ALTER TABLE artifact_workflow_roles OWNER TO gforge;
@@ -7810,7 +7810,7 @@ CREATE TABLE artifact_workflow_notify
REFERENCES artifact_workflow_event (event_id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE CASCADE
)
-WITH OIDS;
+;
-- ALTER TABLE artifact_workflow_notify OWNER TO gforge;
diff --git a/src/db/20111129_roadmap.sql b/src/db/20111129_roadmap.sql
index a7979f3..24c98e6 100644
--- a/src/db/20111129_roadmap.sql
+++ b/src/db/20111129_roadmap.sql
@@ -16,7 +16,7 @@ CREATE TABLE roadmap
is_default integer,
CONSTRAINT roadmap_pkey PRIMARY KEY (roadmap_id)
)
-WITH OIDS;
+;
CREATE TABLE roadmap_list
(
@@ -27,6 +27,6 @@ CREATE TABLE roadmap_list
REFERENCES roadmap (roadmap_id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION
)
-WITH OIDS;
+;
-----------------------------------------------------------------------
Summary of changes:
src/db/1-fusionforge-init.sql | 8 ++++----
src/db/20111129_roadmap.sql | 4 ++--
2 files changed, 6 insertions(+), 6 deletions(-)
hooks/post-receive
--
FusionForge
_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits