mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 14:40:27 +00:00
18 lines
569 B
Python
18 lines
569 B
Python
from .base import db
|
|
|
|
|
|
class AccountUser(db.Model):
|
|
__tablename__ = 'account_user'
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
account_id = db.Column(db.Integer,
|
|
db.ForeignKey('account.id'),
|
|
nullable=False)
|
|
user_id = db.Column(db.Integer, db.ForeignKey('user.id'), nullable=False)
|
|
|
|
def __init__(self, account_id, user_id):
|
|
self.account_id = account_id
|
|
self.user_id = user_id
|
|
|
|
def __repr__(self):
|
|
return '<Account_User {0} {1}>'.format(self.account_id, self.user_id)
|