Initial commit of the Asset Management System, including project structure, Docker configuration, database migrations, and core application files. Added user authentication, asset management features, and basic UI components.
This commit is contained in:
11
database/seeds/004_seed_departments.sql
Normal file
11
database/seeds/004_seed_departments.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
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');
|
||||
Reference in New Issue
Block a user