Fix in rsa
This commit is contained in:
parent
f35f04b2c0
commit
96316454c2
2 changed files with 16 additions and 1 deletions
|
|
@ -399,3 +399,15 @@ class TaskDone(WebModel):
|
|||
super().__init__(connection)
|
||||
self.register(corefields.CharField('name_task'), True)
|
||||
self.register(LonelyIpField('ip'), True)
|
||||
|
||||
# For create task dinamically from database
|
||||
|
||||
class TaskDb(WebModel):
|
||||
|
||||
def __init__(self, connection):
|
||||
|
||||
super().__init__(connection)
|
||||
self.register(corefields.CharField('name'), True)
|
||||
self.register(corefields.CharField('path', 4096), True)
|
||||
self.fields['path'].unique=True
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue