release 7.1 process - script to set version

This commit is contained in:
Carlos Ruiz 2019-11-21 22:28:32 +01:00
parent 09bd1527b8
commit ccd51b994e
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,14 @@
-- Set Version
UPDATE AD_SYSTEM
SET releaseno = '7.1',
VERSION = '2019-11-22'
WHERE ad_system_id = 0 AND ad_client_id = 0
;
COMMIT
;
SELECT register_migration_script('201911212227_Version.sql') FROM dual
;

View File

@ -0,0 +1,11 @@
-- Set Version
UPDATE AD_SYSTEM
SET releaseno = '7.1',
VERSION = '2019-11-22'
WHERE ad_system_id = 0 AND ad_client_id = 0
;
SELECT register_migration_script('201911212227_Version.sql') FROM dual
;