19 lines
453 B
Python
19 lines
453 B
Python
|
# Generated by Django 4.1.6 on 2023-02-13 18:59
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('core', '0061_assetrule'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='assetrule',
|
||
|
name='status',
|
||
|
field=models.IntegerField(choices=[(0, 'No data'), (1, 'No match'), (2, 'Positive'), (3, 'Negative')], default=0),
|
||
|
),
|
||
|
]
|