Move django-based uncloud to top-level
This commit is contained in:
parent
0560063326
commit
95d43f002f
265 changed files with 0 additions and 0 deletions
24
uncloud_net/migrations/0002_auto_20200409_1225.py
Normal file
24
uncloud_net/migrations/0002_auto_20200409_1225.py
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Generated by Django 3.0.5 on 2020-04-09 12:25
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('uncloud_net', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='vpnnetworkreservation',
|
||||
name='status',
|
||||
field=models.CharField(choices=[('used', 'used'), ('free', 'free')], default='used', max_length=256),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='vpnnetwork',
|
||||
name='network',
|
||||
field=models.ForeignKey(editable=False, on_delete=django.db.models.deletion.CASCADE, to='uncloud_net.VPNNetworkReservation'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue