Update atst to atat
This commit is contained in:
12
atat/models/notification_recipient.py
Normal file
12
atat/models/notification_recipient.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from sqlalchemy import String, Column
|
||||
|
||||
from atat.models.base import Base
|
||||
import atat.models.types as types
|
||||
import atat.models.mixins as mixins
|
||||
|
||||
|
||||
class NotificationRecipient(Base, mixins.TimestampsMixin):
|
||||
__tablename__ = "notification_recipients"
|
||||
|
||||
id = types.Id()
|
||||
email = Column(String, nullable=False)
|
Reference in New Issue
Block a user