Browse Source

allow for varchar columns without size #311920

RELEASE_kern5.1
Daniel Quathamer 3 days ago
parent
commit
72157d1205
  1. 2
      superx/WEB-INF/conf/edustore/db/install/conf/builddatum.txt
  2. 2
      superx/WEB-INF/conf/edustore/db/install/conf/his1/dbconv/sch.eduetl/db_version.tab
  3. 2
      superx/WEB-INF/conf/edustore/db/install/kern_install_ids.sql
  4. 2
      superx/WEB-INF/conf/edustore/db/install/kern_install_pg.sql
  5. 2
      superx/WEB-INF/conf/edustore/db/install/upgrade/kern_upgrade_fields_ids.sql
  6. 2
      superx/WEB-INF/conf/edustore/db/install/upgrade/kern_upgrade_fields_pg.sql
  7. 2
      superx/WEB-INF/conf/edustore/db/install/upgrade/kern_upgrade_tables_ids.sql
  8. 2
      superx/WEB-INF/conf/edustore/db/install/upgrade/kern_upgrade_tables_pg.sql

2
superx/WEB-INF/conf/edustore/db/install/conf/builddatum.txt

@ -1 +1 @@ @@ -1 +1 @@
05.09.2024
16.09.2024

2
superx/WEB-INF/conf/edustore/db/install/conf/his1/dbconv/sch.eduetl/db_version.tab

@ -4,7 +4,7 @@ create table db_version( @@ -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
);

2
superx/WEB-INF/conf/edustore/db/install/kern_install_ids.sql

@ -147,7 +147,7 @@ create table db_version( @@ -147,7 +147,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 ,
primary key (his_system, version)
constraint c_db_version

2
superx/WEB-INF/conf/edustore/db/install/kern_install_pg.sql

@ -162,7 +162,7 @@ create table db_version( @@ -162,7 +162,7 @@ create table db_version(
his_system VARCHAR(255) ,
version CHAR(8) ,
kern_system CHAR(1) ,
version_hash VARCHAR() ,
version_hash VARCHAR ,
systeminfo_id INTEGER ,
constraint c_db_version primary key (his_system, version)

2
superx/WEB-INF/conf/edustore/db/install/upgrade/kern_upgrade_fields_ids.sql

@ -436,7 +436,7 @@ alter table db_version add ( kern_system CHAR(1) ); @@ -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>

2
superx/WEB-INF/conf/edustore/db/install/upgrade/kern_upgrade_fields_pg.sql

@ -544,7 +544,7 @@ alter table db_version add column kern_system CHAR(1) ; @@ -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 ;
</#if>

2
superx/WEB-INF/conf/edustore/db/install/upgrade/kern_upgrade_tables_ids.sql

@ -356,7 +356,7 @@ create table db_version( @@ -356,7 +356,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 ,
primary key (his_system, version)
constraint c_db_version

2
superx/WEB-INF/conf/edustore/db/install/upgrade/kern_upgrade_tables_pg.sql

@ -501,7 +501,7 @@ create table db_version( @@ -501,7 +501,7 @@ create table db_version(
his_system VARCHAR(255) ,
version CHAR(8) ,
kern_system CHAR(1) ,
version_hash VARCHAR() ,
version_hash VARCHAR ,
systeminfo_id INTEGER ,
constraint c_db_version primary key (his_system, version)

Loading…
Cancel
Save