Skip to content

Commit

Permalink
version 2024.9.1158
Browse files Browse the repository at this point in the history
  • Loading branch information
gbook committed Sep 18, 2024
1 parent f517930 commit cb79ddc
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/nidb/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion src/setup/nidb.el7.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: nidb
Version: 2024.7.1140
Version: 2024.9.1158
Release: 1%{?dist}
Summary: NeuroInformatics Database

Expand Down
2 changes: 1 addition & 1 deletion src/setup/nidb.el8.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: nidb
Version: 2024.7.1140
Version: 2024.9.1158
Release: 1%{?dist}
Summary: NeuroInformatics Database

Expand Down
2 changes: 1 addition & 1 deletion src/setup/nidb.el9.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: nidb
Version: 2024.7.1140
Version: 2024.9.1158
Release: 1%{?dist}
Summary: NeuroInformatics Database

Expand Down
20 changes: 12 additions & 8 deletions src/setup/nidb.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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';

-- --------------------------------------------------------
Expand Down

0 comments on commit cb79ddc

Please # to comment.