# Copyright (C) 2020 by Cathy Hu # # SPDX-License-Identifier: 0BSD from kibicara.model import Hood, Mapping from ormantic import Integer, ForeignKey, Model, Text class Twitter(Model): id: Integer(primary_key=True) = None hood: ForeignKey(Hood) dms_since_id: Integer(allow_null=True) = None mentions_since_id: Integer(allow_null=True) = None access_token: Text(allow_null=True) = None access_token_secret: Text(allow_null=True) = None class Mapping(Mapping): table_name = 'twitterbots'