Server IP : 66.29.132.122 / Your IP : 3.138.102.202 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/thread-self/root/proc/thread-self/root/proc/self/root/opt/imunify360/venv/lib64/python3.11/site-packages/defence360agent/migrations/ |
Upload File : |
import peewee as pw def migrate(migrator, database, fake=False, **kwargs): Country = migrator.orm["country"] class Proactive(pw.Model): class Meta: db_table = "proactive" id = pw.PrimaryKeyField() timestamp = pw.IntegerField(null=False) ip = pw.TextField(null=True) ip_int = pw.IntegerField(null=True) ip_version = pw.IntegerField(null=True) ip_country = pw.ForeignKeyField(Country, null=True) reason = pw.TextField(null=False) description = pw.TextField(null=True) action = pw.TextField(null=False) host = pw.TextField(null=True) path = pw.TextField(null=False) url = pw.TextField(null=True) count = pw.IntegerField(null=False) uid = pw.IntegerField(null=False) gid = pw.IntegerField(null=False) class ProactiveEnv(pw.Model): event = pw.ForeignKeyField( Proactive, null=False, on_delete="CASCADE", related_name="env" ) name = pw.TextField(null=False) value = pw.TextField(null=True) class Meta: db_table = "proactive_env" primary_key = pw.CompositeKey("event", "name", "value") migrator.create_model(Proactive) migrator.create_model(ProactiveEnv) def rollback(migrator, database, fake=False, **kwargs): ProactiveEnv = migrator.orm["proactive_env"] Proactive = migrator.orm["proactive"] migrator.remove_model(ProactiveEnv) migrator.remove_model(Proactive)