Terminwahl/terminwahl_back/migrations/20230127211643_sample_teachers_and_subjects.sql

18 lines
510 B
MySQL
Raw Normal View History

2023-01-28 00:22:59 +01:00
-- 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);