Skip to content

Commit

Permalink
Adding DoB to RB_Config.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Dec 18, 2023
1 parent 0736b50 commit 67284b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions raisinbread/RB_files/RB_Config.sql
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ INSERT INTO `Config` (`ID`, `ConfigID`, `Value`) VALUES (124,128,'');
INSERT INTO `Config` (`ID`, `ConfigID`, `Value`) VALUES (126,129,'365');
INSERT INTO `Config` (`ID`, `ConfigID`, `Value`) VALUES (127,130,'/var/www/loris/');
INSERT INTO `Config` (`ID`, `ConfigID`, `Value`) VALUES (128,131,'/data/EEGUploadIncomingPath/');
INSERT INTO `Config` (`ID`, `ConfigID`, `Value`) VALUES (128,132,'false');

UNLOCK TABLES;
SET FOREIGN_KEY_CHECKS=1;
6 changes: 4 additions & 2 deletions test/test_instrument/test_instrumentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ public function setUp(): void
'Active' => 'Y',
'UserID' => 1,
'Entity_type' => 'Human',
'Sex' => 'Female'
]
'Sex' => 'Female',
'DoB' => '2003-12-12',
'EDC' => '2003-12-12'
]
);
$this->DB->insert(
'session',
Expand Down

0 comments on commit 67284b1

Please sign in to comment.