initial commit

This commit is contained in:
2025-06-29 18:17:04 +03:00
commit 6c731b04d3
11 changed files with 323 additions and 0 deletions

13
app/schema.py Normal file
View File

@ -0,0 +1,13 @@
from .db import db
# list of statements
SCHEMA = [
]
def create():
print("Creating schema...")
with db.transaction():
for stmt in SCHEMA:
db.execute(stmt)
print("Schema completed.")