🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 06:39:16 | PHP 8.1.34
📂
/ (Root)
/
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
defence360agent
/
migrations
📍 /opt/imunify360/venv/lib/python3.11/site-packages/defence360agent/migrations
🔄 Refresh
✏️
Editing: 024_ignore_from_graylist.py
Read Only
import peewee as pw class IgnoreList(pw.Model): ip = pw.CharField(primary_key=True, null=False) class Meta: db_table = "ignore_list" def migrate(migrator, database, fake=False, **kwargs): """Write your migrations here.""" migrator.create_model(IgnoreList) def rollback(migrator, database, fake=False, **kwargs): """Write your rollback migrations here.""" IgnoreList = migrator.orm["ignore_list"] migrator.drop_model(IgnoreList)
💾 Save Changes
❌ Cancel