mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 15:57:44 +02:00
29 lines
1.0 KiB
Python
29 lines
1.0 KiB
Python
# Generated by Django 3.2.4 on 2021-12-30 19:39
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('startScan', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='TodoNote',
|
|
fields=[
|
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
|
('title', models.CharField(blank=True, max_length=1000, null=True)),
|
|
('description', models.TextField(blank=True, null=True)),
|
|
('is_done', models.BooleanField(default=False)),
|
|
('is_important', models.BooleanField(default=False)),
|
|
('scan_history', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='startScan.scanhistory')),
|
|
('subdomain', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='startScan.subdomain')),
|
|
],
|
|
),
|
|
]
|