1
1
forked from iarv/meshview
Files
meshview/meshview/database.py
Pablo Revilla 604fc5c284 Multile changes to the code. Important to mentioned that we added another column to the nodes table to report on last_update
This can give us when the node was last seen on the mesh and provide some understanding if it is active.
2025-01-31 14:19:28 -08:00

16 lines
611 B
Python

from meshview import models
from sqlalchemy.ext.asyncio import create_async_engine, async_sessionmaker
def init_database(database_connection_string):
global engine, async_session
kwargs = {}
if not database_connection_string.startswith('sqlite'):
kwargs['pool_size'] = 20
kwargs['max_overflow'] = 50
engine = create_async_engine(database_connection_string, echo=False, **kwargs)
async_session = async_sessionmaker(engine, expire_on_commit=False)
async def create_tables():
async with engine.begin() as conn:
await conn.run_sync(models.Base.metadata.create_all)