From cb79ddc3c12c01d5d2ef14e30a04e37a20377cb7 Mon Sep 17 00:00:00 2001 From: Gregory Book Date: Wed, 18 Sep 2024 12:55:13 -0400 Subject: [PATCH] version 2024.9.1158 --- src/nidb/version.h | 4 ++-- src/setup/nidb.el7.spec | 2 +- src/setup/nidb.el8.spec | 2 +- src/setup/nidb.el9.spec | 2 +- src/setup/nidb.sql | 20 ++++++++++++-------- 5 files changed, 17 insertions(+), 13 deletions(-) diff --git a/src/nidb/version.h b/src/nidb/version.h index d3b5b16d..a951de39 100755 --- a/src/nidb/version.h +++ b/src/nidb/version.h @@ -2,7 +2,7 @@ #define VERSION_H #define VERSION_MAJ "2024" -#define VERSION_MIN "7" -#define BUILD_NUM "1140" +#define VERSION_MIN "9" +#define BUILD_NUM "1158" #endif // VERSION_H diff --git a/src/setup/nidb.el7.spec b/src/setup/nidb.el7.spec index 1fa3a355..7fc8cfbb 100755 --- a/src/setup/nidb.el7.spec +++ b/src/setup/nidb.el7.spec @@ -1,5 +1,5 @@ Name: nidb -Version: 2024.7.1140 +Version: 2024.9.1158 Release: 1%{?dist} Summary: NeuroInformatics Database diff --git a/src/setup/nidb.el8.spec b/src/setup/nidb.el8.spec index ffcaa413..72c2cc11 100755 --- a/src/setup/nidb.el8.spec +++ b/src/setup/nidb.el8.spec @@ -1,5 +1,5 @@ Name: nidb -Version: 2024.7.1140 +Version: 2024.9.1158 Release: 1%{?dist} Summary: NeuroInformatics Database diff --git a/src/setup/nidb.el9.spec b/src/setup/nidb.el9.spec index 37e87b22..c5f19d36 100755 --- a/src/setup/nidb.el9.spec +++ b/src/setup/nidb.el9.spec @@ -1,5 +1,5 @@ Name: nidb -Version: 2024.7.1140 +Version: 2024.9.1158 Release: 1%{?dist} Summary: NeuroInformatics Database diff --git a/src/setup/nidb.sql b/src/setup/nidb.sql index 6f811891..7b9648aa 100644 --- a/src/setup/nidb.sql +++ b/src/setup/nidb.sql @@ -3,7 +3,7 @@ -- https://www.phpmyadmin.net/ -- -- Host: localhost --- Generation Time: Sep 16, 2024 at 08:21 PM +-- Generation Time: Sep 18, 2024 at 04:51 PM -- Server version: 10.3.28-MariaDB -- PHP Version: 7.2.24 @@ -440,16 +440,20 @@ CREATE TABLE `backups` ( CREATE TABLE `bids_mapping` ( `protocolmapping_id` int(11) NOT NULL, - `project_id` int(11) DEFAULT NULL COMMENT 'if project_id is null, then this alt name applies to all projects', + `project_id` int(11) DEFAULT NULL COMMENT 'if project_id is null, then this mapping applies to all projects', `protocolname` varchar(255) NOT NULL, `imagetype` varchar(255) NOT NULL, `modality` varchar(255) NOT NULL, - `bidsentity` varchar(255) NOT NULL, - `bidssuffix` varchar(255) NOT NULL, - `bidsrun` int(11) NOT NULL, - `bidsautorun` int(11) NOT NULL, - `bidsintendedfor` text NOT NULL, - `bidstask` varchar(255) NOT NULL + `bidsEntity` text NOT NULL, + `bidsSuffix` text NOT NULL, + `bidsRun` int(11) NOT NULL, + `bidsAutoNumberRuns` tinyint(1) NOT NULL, + `bidsIntendedForEntity` text NOT NULL, + `bidsIntendedForTask` text NOT NULL, + `bidsIntendedForRun` text NOT NULL, + `bidsIntendedForSuffix` text NOT NULL, + `bidsIntendedForFileExtension` text NOT NULL, + `bidsTask` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='this table maps long protocol name(s) to short names'; -- --------------------------------------------------------