Skip to content

Commit

Permalink
[survey_accounts] Clean up after Email col removed (#8313)
Browse files Browse the repository at this point in the history
The Email column of the participant_accounts table was removed in #7248.
This PR cleans up the remaining references to that column, and removes from the schema/raisinbread
  • Loading branch information
zaliqarosli committed Feb 14, 2023
1 parent 46ca79c commit 86a0494
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 54 deletions.
1 change: 0 additions & 1 deletion SQL/0000-00-00-schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1282,7 +1282,6 @@ CREATE TABLE `participant_accounts` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`SessionID` int(6) DEFAULT NULL,
`Test_name` varchar(255) DEFAULT NULL,
`Email` varchar(255) DEFAULT NULL,
`Status` enum('Created','Sent','In Progress','Complete') DEFAULT NULL,
`OneTimePassword` varchar(16) DEFAULT NULL,
`CommentID` varchar(255) DEFAULT NULL,
Expand Down
1 change: 0 additions & 1 deletion modules/survey_accounts/test/survey_accountsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ public function setUp(): void
"participant_accounts",
[
'SessionID' => '111111',
'Email' => 'TestTestTest@example.com',
'Test_name' => 'Test',
'Status' => 'In Progress',
'OneTimePassword' => 'Test',
Expand Down

0 comments on commit 86a0494

Please sign in to comment.