Skip to content

Commit 86a0494

Browse files
authored
[survey_accounts] Clean up after Email col removed (#8313)
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
1 parent 46ca79c commit 86a0494

File tree

3 files changed

+52
-54
lines changed

3 files changed

+52
-54
lines changed

SQL/0000-00-00-schema.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1282,7 +1282,6 @@ CREATE TABLE `participant_accounts` (
12821282
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
12831283
`SessionID` int(6) DEFAULT NULL,
12841284
`Test_name` varchar(255) DEFAULT NULL,
1285-
`Email` varchar(255) DEFAULT NULL,
12861285
`Status` enum('Created','Sent','In Progress','Complete') DEFAULT NULL,
12871286
`OneTimePassword` varchar(16) DEFAULT NULL,
12881287
`CommentID` varchar(255) DEFAULT NULL,

modules/survey_accounts/test/survey_accountsTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ public function setUp(): void
118118
"participant_accounts",
119119
[
120120
'SessionID' => '111111',
121-
'Email' => 'TestTestTest@example.com',
122121
'Test_name' => 'Test',
123122
'Status' => 'In Progress',
124123
'OneTimePassword' => 'Test',

0 commit comments

Comments
 (0)