From 2ec0d7b9f5c1354977b821c6b06c24a3ffa13142 Mon Sep 17 00:00:00 2001 From: Gergely Csatari Date: Thu, 26 Oct 2023 10:33:28 +0300 Subject: Removing project content and adding a note that the development continues in GitHub Change-Id: I25c58a679dbf92b2367d826429b7cda936bf9f0e Signed-off-by: Gergely Csatari --- src/account/migrations/0003_publicnetwork.py | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/account/migrations/0003_publicnetwork.py (limited to 'src/account/migrations/0003_publicnetwork.py') diff --git a/src/account/migrations/0003_publicnetwork.py b/src/account/migrations/0003_publicnetwork.py deleted file mode 100644 index 71e5caa..0000000 --- a/src/account/migrations/0003_publicnetwork.py +++ /dev/null @@ -1,25 +0,0 @@ -# Generated by Django 2.1 on 2018-09-26 14:41 - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('account', '0002_lab_description'), - ] - - operations = [ - migrations.CreateModel( - name='PublicNetwork', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('vlan', models.IntegerField()), - ('in_use', models.BooleanField(default=False)), - ('cidr', models.CharField(default='0.0.0.0/0', max_length=50)), - ('gateway', models.CharField(default='0.0.0.0', max_length=50)), - ('lab', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='account.Lab')), - ], - ), - ] -- cgit 1.2.3-korg