You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
344 B
13 lines
344 B
"""Database configuration and methods."""
|
|
|
|
from flask_migrate import upgrade
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
from sqlalchemy.ext.declarative import DeclarativeMeta
|
|
|
|
db: SQLAlchemy = SQLAlchemy()
|
|
db_model: DeclarativeMeta = db.Model
|
|
|
|
|
|
def init_db() -> None:
|
|
"""Clear existing data and create new tables."""
|
|
upgrade('migrations')
|