This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See http://git.codelutin.com/observe.git commit eaa389d6823dd315d815576a0f9ef100ae7c5737 Author: Maven Release <maven-release@codelutin.com> Date: Fri Aug 14 11:07:50 2015 +0200 Ajout de licenses manqauntes --- .../main/resources/db/4.0.1/add-missing-fk-H2.sql | 21 +++++++++++++++++++++ .../main/resources/db/4.0.1/add-missing-fk-PG.sql | 21 +++++++++++++++++++++ .../resources/db/4.0.1/remove-gender-column-H2.sql | 21 +++++++++++++++++++++ .../resources/db/4.0.1/remove-gender-column-PG.sql | 21 +++++++++++++++++++++ 4 files changed, 84 insertions(+) diff --git a/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-H2.sql b/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-H2.sql index 2eaf2f9..6574da7 100644 --- a/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-H2.sql +++ b/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-H2.sql @@ -1,3 +1,24 @@ +--- +-- #%L +-- ObServe :: Entities +-- %% +-- Copyright (C) 2008 - 2015 IRD, Codelutin, Tony Chemit +-- %% +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public +-- License along with this program. If not, see +-- <http://www.gnu.org/licenses/gpl-3.0.html>. +-- #L% +--- ALTER TABLE OBSERVE_SEINE.FLOATINGOBJECT ADD CONSTRAINT FK_FLOATINGOBJECT_OBJECTTYPE FOREIGN KEY(OBJECTTYPE) REFERENCES OBSERVE_SEINE.OBJECTTYPE(TOPIAID) CHECK; ALTER TABLE OBSERVE_SEINE.FLOATINGOBJECT ADD CONSTRAINT FK_FLOATINGOBJECT_OBJECTFATE FOREIGN KEY(OBJECTFATE) REFERENCES OBSERVE_SEINE.OBJECTFATE(TOPIAID) CHECK; ALTER TABLE OBSERVE_SEINE.FLOATINGOBJECT ADD CONSTRAINT FK_FLOATINGOBJECT_OBJECTOPERATION FOREIGN KEY(OBJECTOPERATION) REFERENCES OBSERVE_SEINE.OBJECTOPERATION(TOPIAID) CHECK; diff --git a/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-PG.sql b/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-PG.sql index 457b5f5..2ba8e31 100644 --- a/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-PG.sql +++ b/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-PG.sql @@ -1,3 +1,24 @@ +--- +-- #%L +-- ObServe :: Entities +-- %% +-- Copyright (C) 2008 - 2015 IRD, Codelutin, Tony Chemit +-- %% +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public +-- License along with this program. If not, see +-- <http://www.gnu.org/licenses/gpl-3.0.html>. +-- #L% +--- ALTER TABLE OBSERVE_SEINE.FLOATINGOBJECT ADD CONSTRAINT FK_FLOATINGOBJECT_OBJECTTYPE FOREIGN KEY(OBJECTTYPE) REFERENCES OBSERVE_SEINE.OBJECTTYPE(TOPIAID); ALTER TABLE OBSERVE_SEINE.FLOATINGOBJECT ADD CONSTRAINT FK_FLOATINGOBJECT_OBJECTFATE FOREIGN KEY(OBJECTFATE) REFERENCES OBSERVE_SEINE.OBJECTFATE(TOPIAID); ALTER TABLE OBSERVE_SEINE.FLOATINGOBJECT ADD CONSTRAINT FK_FLOATINGOBJECT_OBJECTOPERATION FOREIGN KEY(OBJECTOPERATION) REFERENCES OBSERVE_SEINE.OBJECTOPERATION(TOPIAID); diff --git a/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-H2.sql b/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-H2.sql index a2296b1..aea6b29 100644 --- a/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-H2.sql +++ b/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-H2.sql @@ -1 +1,22 @@ +--- +-- #%L +-- ObServe :: Entities +-- %% +-- Copyright (C) 2008 - 2015 IRD, Codelutin, Tony Chemit +-- %% +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public +-- License along with this program. If not, see +-- <http://www.gnu.org/licenses/gpl-3.0.html>. +-- #L% +--- ALTER TABLE observe_common.lengthweightparameter DROP COLUMN IF EXISTS gender; \ No newline at end of file diff --git a/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-PG.sql b/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-PG.sql index a2296b1..aea6b29 100644 --- a/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-PG.sql +++ b/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-PG.sql @@ -1 +1,22 @@ +--- +-- #%L +-- ObServe :: Entities +-- %% +-- Copyright (C) 2008 - 2015 IRD, Codelutin, Tony Chemit +-- %% +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public +-- License along with this program. If not, see +-- <http://www.gnu.org/licenses/gpl-3.0.html>. +-- #L% +--- ALTER TABLE observe_common.lengthweightparameter DROP COLUMN IF EXISTS gender; \ No newline at end of file -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.