🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 07:50:08 | 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: 072_extend_last_synclist.py
Read Only
def migrate(migrator, database, fake=False, **kwargs): """Recreating DB in order to make `name` as primary key""" migrator.sql( """ CREATE TABLE "last_synclist_new" ( "timestamp" REAL, "name" VARCHAR(255) NOT NULL PRIMARY KEY )""" ) migrator.sql( "INSERT INTO last_synclist_new " 'SELECT timestamp, "ip" AS name FROM last_synclist LIMIT 1' ) migrator.sql("DROP TABLE last_synclist") migrator.sql("ALTER TABLE last_synclist_new RENAME TO last_synclist") def rollback(migrator, database, fake=False, **kwargs): """Write your rollback migrations here."""
💾 Save Changes
❌ Cancel