mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 15:57:44 +02:00
20 lines
525 B
Python
20 lines
525 B
Python
# Generated by Django 3.0.7 on 2020-11-15 17:23
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('startScan', '0010_vulnerabilityscan_discovered_date'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='vulnerabilityscan',
|
|
name='host',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='startScan.ScannedHost'),
|
|
),
|
|
]
|