Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[survey_accounts] Clean up after Email col removed #8313

Merged
merged 1 commit into from
Feb 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion SQL/0000-00-00-schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1283,7 +1283,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