@ -1 +1 @@
05.09.2024
16.09.2024
@ -4,7 +4,7 @@ create table db_version(
his_system NVARCHAR(255) ,
version CHAR(8) ,
kern_system CHAR(1) ,
version_hash VARCHAR() ,
version_hash VARCHAR ,
systeminfo_id INTEGER
);
@ -147,7 +147,7 @@ create table db_version(
systeminfo_id INTEGER ,
primary key (his_system, version)
constraint c_db_version
@ -162,7 +162,7 @@ create table db_version(
his_system VARCHAR(255) ,
constraint c_db_version primary key (his_system, version)
@ -436,7 +436,7 @@ alter table db_version add ( kern_system CHAR(1) );
! echo "field db_version.version_hash will be added"
! echo `date`
alter table db_version add ( version_hash VARCHAR() );
alter table db_version add ( version_hash VARCHAR );
</#if>
@ -544,7 +544,7 @@ alter table db_version add column kern_system CHAR(1) ;
select now(), 'field db_version.version_hash will be added';
alter table db_version add column version_hash VARCHAR() ;
alter table db_version add column version_hash VARCHAR ;
@ -356,7 +356,7 @@ create table db_version(
@ -501,7 +501,7 @@ create table db_version(