-
Notifications
You must be signed in to change notification settings - Fork 189
[issue_tracker] Add Instrument dropdown to Issue form #9311
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
Conversation
racostas
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
SQL/0000-00-00-schema.sql
Outdated
| `candID` int(6) DEFAULT NULL, | ||
| `category` varchar(255) DEFAULT NULL, | ||
| `description` longtext DEFAULT NULL, | ||
| `instrument` varchar(255) DEFAULT NULL, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this should be a varchar(255). The test_names table should have all instruments and this can/should be a foreign key.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@driusan Please check now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you forget to push something? It is still a varchar(255). It should be an int(10) unsigned that references Test_names(ID)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@driusan Apologies, I misunderstood. Request you to review now.
changes seem to have been addressed. bumping for dave's re-review
|
Hi @ay-bh, you're in the good direction |
d1c799a to
1d99808
Compare
SQL/New_patches/2024-07-19-issuetracker_AddsInstrumentToIssuesTable.sql
Outdated
Show resolved
Hide resolved
SQL/New_patches/2024-07-19-issuetracker_AddsInstrumentToIssuesTable.sql
Outdated
Show resolved
Hide resolved
racostas
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @ay-bh , two minor changes in the New_patches file, that we might want to include in the RB file as well. Please take a look at the comments in the corresponding file.
Also I'm aware you're in a national festivities until Nov 4-5 so don't rush to solve this one. We can do it when you back. It's very small.
Co-authored-by: racostas <37309344+racostas@users.noreply.github.com>
Co-authored-by: racostas <37309344+racostas@users.noreply.github.com>
racostas
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All tested again. LGTM !
|
This one looks good @driusan , I left you the final review. Thanks ! |
## Brief summary of changes Added 'Instrument' dropdown field to Issue Tracker * Resolves aces#8896
Brief summary of changes
Added 'Instrument' dropdown field to Issue Tracker
Updated database schema to include 'instrument' column in 'issues' table
Modified Issue Form to include new Instrument dropdown
Updated relevant PHP and JavaScript files to handle the new field
Have you updated related documentation?
Testing instructions (if applicable)
Link(s) to related issue(s)