16 lines
458 B
Python
16 lines
458 B
Python
from __future__ import annotations
|
|
|
|
from mautrix.util.async_db import UpgradeTable, Connection
|
|
|
|
upgrade_table = UpgradeTable()
|
|
|
|
@upgrade_table.register(description="Table initialization")
|
|
async def upgrade_v1(conn: Connection) -> None:
|
|
await conn.execute(
|
|
"""CREATE TABLE user_events (
|
|
mxid TEXT PRIMARY KEY,
|
|
last_message_timestamp BIGINT NOT NULL,
|
|
ignore_inactivity INT
|
|
)"""
|
|
)
|