added new eventLog type

This commit is contained in:
Dobromir Popov
2024-05-11 16:30:25 +03:00
parent bf80e985de
commit d56ca612d4
2 changed files with 20 additions and 1 deletions

View File

@ -227,7 +227,7 @@ export default function PublisherForm({ item, me }) {
</div> </div>
<div className="mb-4"> <div className="mb-4">
<label className="label" htmlFor="congregationId">Сбор</label> <label className="label" htmlFor="congregationId">Сбор</label>
<select id="congregationId" name="congregationId" value={publisher.congregationId} onChange={handleChange} className="select" placeholder="Община" autoFocus > <select id="congregationId" name="congregationId" value={publisher.congregationId} onChange={handleChange} className="select textbox" placeholder="Община" autoFocus >
<option value="">Избери сбор</option> <option value="">Избери сбор</option>
{congregations.map((congregation) => ( {congregations.map((congregation) => (
<option key={congregation.id} value={congregation.id}> <option key={congregation.id} value={congregation.id}>

View File

@ -0,0 +1,19 @@
-- AlterTable
ALTER TABLE `eventlog`
MODIFY `type` ENUM(
'AssignmentReplacementManual', 'AssignmentReplacementRequested', 'AssignmentReplacementAccepted', 'SentEmail', 'PasswordResetRequested', 'PasswordResetEmailConfirmed', 'PasswordResetCompleted'
) NOT NULL;
INSERT INTO
`Congregation`
VALUES (1, 'Перник', '', 1),
(2, 'София Люлин', '', 1),
(3, 'София Юг', '', 1),
(4, 'София Надежда', '', 1),
(5, 'София Руски', '', 1),
(6, 'София Факултета', '', 1),
(7, 'София Изток', '', 1),
(8, 'София Младост', '', 1),
(9, 'София Английски', '', 1),
(10, 'Ботевград', '', 1),
(11, 'София Дружба', '', 1);