Files
Inventory/database/seeds/004_seed_departments.sql

12 lines
891 B
SQL

INSERT INTO departments (name, cost_center, manager, manager_email) VALUES
('Geschäftsführung', 'GF-001', 'Dr. Michael Bauer', 'michael.bauer@example.com'),
('IT & Systemadministration', 'IT-001', 'Sarah Klein', 'sarah.klein@example.com'),
('Buchhaltung & Finanzen', 'BU-001', 'Frank Meyer', 'frank.meyer@example.com'),
('Personal & Verwaltung', 'PE-001', 'Claudia Schulz', 'claudia.schulz@example.com'),
('Vertrieb & Marketing', 'VM-001', 'Andreas Wolf', 'andreas.wolf@example.com'),
('Produktion & Fertigung', 'PR-001', 'Robert Koch', 'robert.koch@example.com'),
('Einkauf & Logistik', 'EL-001', 'Petra Lange', 'petra.lange@example.com'),
('Forschung & Entwicklung', 'FE-001', 'Dr. Thomas Richter', 'thomas.richter@example.com'),
('Kundenservice', 'KS-001', 'Nina Becker', 'nina.becker@example.com'),
('Qualitätssicherung', 'QS-001', 'Markus Hoffmann', 'markus.hoffmann@example.com');