Files
Campus-Plug/SQL_code/init-db.py
2025-03-23 16:29:38 -06:00

4 lines
166 B
Python

import subprocess
if (subprocess.run("mysql -u root mysql < SQL_code/Schema.sql", shell=True, check=True)):
print("successfully created the Marketplace databse")