25 lines
737 B
Python
25 lines
737 B
Python
# Generated by Django 5.1.1 on 2024-09-11 06:16
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='MalwarePrediction',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('process_name', models.CharField(max_length=255)),
|
|
('process_class', models.CharField(max_length=50)),
|
|
('probability_of_malware', models.FloatField()),
|
|
('predicted_malware', models.CharField(max_length=50)),
|
|
],
|
|
),
|
|
]
|