diff --git a/screening/source/sql/postgresql/011/schema-011.sql b/screening/source/sql/postgresql/011/schema-011.sql index 186bd8516c4d6de17a401b536c60497dd35f097f..1953e10455b15a5d79e12f22f1549458bcd623a2 100644 --- a/screening/source/sql/postgresql/011/schema-011.sql +++ b/screening/source/sql/postgresql/011/schema-011.sql @@ -79,7 +79,7 @@ CREATE TABLE DATA_SETS ( IMAGE_LIBRARY_NAME NAME, -- Which reader in the library should be used? Vald only if the library name is specified. -- If not specified, the reader will be detected automatically (it can be slower). - IMAGE_READER_NAME NAME, + IMAGE_LIBRARY_READER_NAME NAME, ---- END image dataset specific fields CONT_ID TECH_ID, diff --git a/screening/source/sql/postgresql/migration/migration-010-011.sql b/screening/source/sql/postgresql/migration/migration-010-011.sql index fcbeb553b3187242de3b2f64db1ef950bd990003..95b0a18d3dd8d9d0ad51e749e6458c25a5cd132d 100644 --- a/screening/source/sql/postgresql/migration/migration-010-011.sql +++ b/screening/source/sql/postgresql/migration/migration-010-011.sql @@ -1,4 +1,4 @@ -- Migration from 010 to 011 ALTER TABLE data_sets ADD COLUMN image_library_name NAME; -ALTER TABLE data_sets ADD COLUMN image_reader_name NAME; +ALTER TABLE data_sets ADD COLUMN image_library_reader_name NAME;