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 ce89019c5f5d371c995800be6e313d78a2560c40 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sat Apr 11 10:53:08 2015 +0200 refs #6934 mise à jour du topiaversion --- .../src/main/resources/db/4.0-RC2/clean-program-gear-type-H2.sql | 1 + .../src/main/resources/db/4.0-RC2/clean-program-gear-type-PG.sql | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/observe-entities/src/main/resources/db/4.0-RC2/clean-program-gear-type-H2.sql b/observe-entities/src/main/resources/db/4.0-RC2/clean-program-gear-type-H2.sql index 42561b2..51e7b20 100644 --- a/observe-entities/src/main/resources/db/4.0-RC2/clean-program-gear-type-H2.sql +++ b/observe-entities/src/main/resources/db/4.0-RC2/clean-program-gear-type-H2.sql @@ -3,4 +3,5 @@ UPDATE observe_common.program set geartype2 = 0 WHERE geartype='seine'; UPDATE observe_common.program set geartype2 = 1 WHERE geartype='longline'; ALTER TABLE observe_common.program DROP COLUMN geartype; ALTER TABLE observe_common.program ALTER COLUMN geartype2 RENAME TO geartype; +UPDATE observe_common.program SET TOPIAVERSION = TOPIAVERSION + 1; diff --git a/observe-entities/src/main/resources/db/4.0-RC2/clean-program-gear-type-PG.sql b/observe-entities/src/main/resources/db/4.0-RC2/clean-program-gear-type-PG.sql index 564f7dc..eaa05c6 100644 --- a/observe-entities/src/main/resources/db/4.0-RC2/clean-program-gear-type-PG.sql +++ b/observe-entities/src/main/resources/db/4.0-RC2/clean-program-gear-type-PG.sql @@ -2,4 +2,5 @@ ALTER TABLE observe_common.program ADD COLUMN geartype2 int; UPDATE observe_common.program set geartype2 = 0 WHERE geartype='seine'; UPDATE observe_common.program set geartype2 = 1 WHERE geartype='longline'; ALTER TABLE observe_common.program DROP COLUMN geartype; -ALTER TABLE observe_common.program RENAME geartype2 TO geartype; \ No newline at end of file +ALTER TABLE observe_common.program RENAME geartype2 TO geartype; +UPDATE observe_common.program SET TOPIAVERSION = TOPIAVERSION + 1; \ 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>.