Add term column

This commit is contained in:
Ian Keane 2026-06-11 17:28:07 -04:00
parent b5e2e8ab2a
commit 377462ed20
5 changed files with 100 additions and 1 deletions

View file

@ -10,6 +10,7 @@ from app.routes_sources import sources_bp
from app.routes_musicians import musicians_bp
from app.routes_tunings import tunings_bp
from app.routes_reference_sites import reference_sites_bp
from app.routes_terms import terms_bp
def create_app():
@ -39,6 +40,7 @@ def create_app():
app.register_blueprint(musicians_bp)
app.register_blueprint(tunings_bp)
app.register_blueprint(reference_sites_bp)
app.register_blueprint(terms_bp)
# --- Error handlers ---
from sqlalchemy.exc import IntegrityError