restructure to move uncloudnetwork into core
This commit is contained in:
parent
8959bc6ad5
commit
20c7c86703
8 changed files with 130 additions and 47 deletions
29
uncloud_net/migrations/0011_auto_20201025_1931.py
Normal file
29
uncloud_net/migrations/0011_auto_20201025_1931.py
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# Generated by Django 3.1 on 2020-10-25 19:31
|
||||
|
||||
from django.conf import settings
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||
('uncloud', '0006_auto_20201025_1931'),
|
||||
('uncloud_net', '0010_auto_20201011_2009'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ReverseDNSEntry',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('ip_address', models.GenericIPAddressField(unique=True)),
|
||||
('name', models.CharField(max_length=253)),
|
||||
('owner', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
|
||||
],
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='UncloudNetwork',
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue