# Copyright (C) 2020 by Maike # Copyright (C) 2020 by Cathy Hu # Copyright (C) 2020 by Thomas Lindner # Copyright (C) 2020 by Martin Rey # # SPDX-License-Identifier: 0BSD from ormantic import ForeignKey, Integer, Model, Text from kibicara.model import Hood, Mapping class Email(Model): """This table is used to track the names. It also stores the token secret.""" id: Integer(primary_key=True) = None hood: ForeignKey(Hood) name: Text(unique=True) secret: Text() class Mapping(Mapping): table_name = 'email' class EmailSubscribers(Model): """This table stores all subscribers, who want to receive messages via email.""" id: Integer(primary_key=True) = None hood: ForeignKey(Hood) email: Text(unique=True) class Mapping(Mapping): table_name = 'email_subscribers'