Prefill all parks and teams

This commit is contained in:
2025-04-11 16:13:50 -04:00
parent 5ce2e90c1a
commit 1234d95510
12 changed files with 5851 additions and 208 deletions

View File

@@ -4,7 +4,7 @@ class Database:
def __init__(self, database_file):
self.db = sqlite3.connect(database_file)
def build_database(self, sql_file_path):
def run_sql_file(self, sql_file_path):
sql_script_string = ''
with open(sql_file_path, 'r') as sql_file:
sql_script_string = sql_file.read()