mirror of
https://github.com/AtHeartEngineer/poap-reddit-bot.git
synced 2026-01-09 20:48:04 -05:00
15 lines
364 B
Python
15 lines
364 B
Python
import ormar
|
|
from datetime import datetime
|
|
from typing import List, Optional
|
|
|
|
from . import BaseMeta
|
|
from .event import Event
|
|
|
|
class Admin(ormar.Model):
|
|
|
|
class Meta(BaseMeta):
|
|
tablename = "admins"
|
|
constraints = [ormar.UniqueColumns('username')]
|
|
|
|
id: str = ormar.Integer(primary_key=True)
|
|
username: str = ormar.String(max_length=100) |