mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 14:40:27 +00:00
21 lines
718 B
Python
21 lines
718 B
Python
from .base import db
|
|
|
|
|
|
class ApiKeyAccount(db.Model):
|
|
__tablename__ = 'apikey_account'
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
apikey_id = db.Column(db.Integer,
|
|
db.ForeignKey('apikey.id'),
|
|
nullable=False)
|
|
account_id = db.Column(db.Integer,
|
|
db.ForeignKey('account.id'),
|
|
nullable=False)
|
|
db.UniqueConstraint('apikey_id', 'account_id', name='uniq_apikey_account')
|
|
|
|
def __init__(self, apikey_id, account_id):
|
|
self.apikey_id = apikey_id
|
|
self.account_id = account_id
|
|
|
|
def __repr__(self):
|
|
return '<ApiKey_Account {0} {1}>'.format(self.apikey_id, self.account_id)
|