1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-19 15:53:07 +05:30

(CI/CD): added drop script to clean database before updating

This commit is contained in:
2023-12-03 20:35:08 +05:30
parent d66e5eafcd
commit f27ee5b9cb
2 changed files with 7 additions and 1 deletions

3
drop_script.sql Normal file
View File

@@ -0,0 +1,3 @@
SET foreign_key_checks = 0;
DROP TABLE IF EXISTS `featured_projects`, `pages`, `profile`, `projects`, `quick_actions`, `socials`, `working_on`;
SET foreign_key_checks = 1;