Files
Campus-Plug/mysql-code/init-db.py

5 lines
169 B
Python
Raw Normal View History

2025-03-23 16:29:38 -06:00
import subprocess
2025-03-29 16:13:22 -06:00
if (subprocess.run("mysql -u root mysql < mysql-code/Schema.sql", shell=True, check=True)):
2025-03-23 16:29:38 -06:00
print("successfully created the Marketplace databse")