18 lines
510 B
MySQL
18 lines
510 B
MySQL
|
-- Add migration script here
|
||
|
INSERT INTO subjects (name)
|
||
|
VALUES ('Mathematik'),
|
||
|
('Deutsch'),
|
||
|
('Biologie/Chemie'),
|
||
|
('Kunst');
|
||
|
INSERT INTO teachers (ansprache, last_name, subject_id)
|
||
|
VALUES ('Frau', 'Dessauer-Reiners', 2),
|
||
|
('Frau', 'Grimrath', 3),
|
||
|
('Frau', 'Junghans', 2),
|
||
|
('Frau', 'Schilling', 1),
|
||
|
('Herr', 'Kühl', 1),
|
||
|
('Frau', 'Küng', 4),
|
||
|
('Frau', 'Nöhring', 2),
|
||
|
('Herr', 'Rudolf', 2),
|
||
|
('Herr', 'Schad', 3),
|
||
|
('Herr', 'Scholz', 2),
|
||
|
('Frau', 'Stanutiu', 1);
|