feat(portal/pool): adds rdr domain field to the pool table
This commit is contained in:
parent
96f81ecfb4
commit
574c348bc1
3 changed files with 39 additions and 1 deletions
|
@ -26,6 +26,7 @@ class Group(AbstractConfiguration):
|
|||
class Pool(AbstractConfiguration):
|
||||
pool_name = db.Column(db.String(80), unique=True, nullable=False)
|
||||
api_key = db.Column(db.String(80), nullable=False)
|
||||
redirector_domain = db.Column(db.String(128), nullable=True)
|
||||
|
||||
@classmethod
|
||||
def csv_header(cls) -> List[str]:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue