Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
-- Clear all data from the database while preserving structure USE codesnippets; -- Disable foreign key checks to avoid constraint issues SET FOREIGN_KEY_CHECKS = 0; -- Clear all data from tables (in order to respect foreign keys) DELETE FROM component_files; DELETE FROM components; DELETE FROM snippets; DELETE FROM categories; -- Reset auto increment counters ALTER TABLE component_files AUTO_INCREMENT = 1; ALTER TABLE components AUTO_INCREMENT = 1; ALTER TABLE snippets AUTO_INCREMENT = 1; ALTER TABLE categories AUTO_INCREMENT = 1; -- Re-enable foreign key checks SET FOREIGN_KEY_CHECKS = 1; -- Show table structure for reference SHOW TABLES;