document_name für Tabelle briefings hinzugefügt, um zwischen Landessprachen unterscheiden zu können
This commit is contained in:
parent
230d79c675
commit
523fee3ff2
@ -19,6 +19,7 @@ CREATE TABLE briefings (
|
|||||||
date DATE NOT NULL,
|
date DATE NOT NULL,
|
||||||
time TIME NOT NULL,
|
time TIME NOT NULL,
|
||||||
location VARCHAR(32) NOT NULL,
|
location VARCHAR(32) NOT NULL,
|
||||||
|
document_name VARCHAR(16) NOT NULL,
|
||||||
as_of DATE NOT NULL,
|
as_of DATE NOT NULL,
|
||||||
instructor_id INT NOT NULL,
|
instructor_id INT NOT NULL,
|
||||||
|
|
||||||
@ -69,8 +70,8 @@ VALUES
|
|||||||
INSERT INTO briefings (
|
INSERT INTO briefings (
|
||||||
date, time, location, as_of, instructor_id
|
date, time, location, as_of, instructor_id
|
||||||
) VALUES
|
) VALUES
|
||||||
( '2023-10-16', '17:00:00', 'Werk Langenhagen', '2021-02-01', '1' ),
|
( '2023-10-16', '17:00:00', 'Werk Langenhagen', 'ICS-2021-LGH', '2021-02-01', '1' ),
|
||||||
( '2023-10-16', '17:05:00', 'Werk Langenhagen', '2021-02-01', '2' );
|
( '2023-10-16', '17:05:00', 'Werk Langenhagen', 'ICS-2021-LGH', '2021-02-01', '2' );
|
||||||
|
|
||||||
INSERT INTO participants (
|
INSERT INTO participants (
|
||||||
first_name, last_name, company
|
first_name, last_name, company
|
||||||
|
Loading…
x
Reference in New Issue
Block a user