/
opt
/
imunify360
/
venv
/
lib64
/
python3.11
/
site-packages
/
defence360agent
/
migrations
/
Upload File
HOME
import peewee as pw def migrate(migrator, database, fake=False, **kwargs): MalwareScans = migrator.orm["malware_scans"] migrator.add_fields( MalwareScans, error=pw.TextField(default=None, null=True) ) def rollback(migrator, database, fake=False, **kwargs): MalwareScans = migrator.orm["malware_scans"] migrator.remove_fields(MalwareScans, "error")