college-bot-v1/utils/db.py

43 lines
1,004 B
Python
Raw Normal View History

2022-09-13 20:50:02 +01:00
import uuid
from typing import TYPE_CHECKING
import orm
from databases import Database
2022-09-13 21:27:14 +01:00
import os
from pathlib import Path
2022-09-13 21:27:25 +01:00
os.chdir(Path(__file__).parent.parent)
2022-09-13 20:50:02 +01:00
registry = orm.ModelRegistry(Database("sqlite:///main.db"))
class VerifyCode(orm.Model):
registry = registry
tablename = "codes"
fields = {
"id": orm.Integer(primary_key=True),
"code": orm.String(min_length=8, max_length=64, unique=True),
"bind": orm.BigInteger(),
2022-09-13 21:27:14 +01:00
"student_id": orm.String(min_length=7, max_length=7),
2022-09-13 20:50:02 +01:00
}
if TYPE_CHECKING:
id: int
code: str
bind: int
student_id: str
class Student(orm.Model):
registry = registry
tablename = "students"
fields = {
"entry_id": orm.UUID(primary_key=True, default=uuid.uuid4),
"id": orm.String(min_length=7, max_length=7, unique=True),
"user_id": orm.BigInteger(unique=True),
}
if TYPE_CHECKING:
entry_id: uuid.UUID
id: str
user_id: int