1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

add missing migrations for new models

This commit is contained in:
catborise 2022-08-24 09:34:16 +03:00
parent f500d44492
commit 234638a85c
4 changed files with 171 additions and 0 deletions

View file

@ -0,0 +1,27 @@
# Generated by Django 3.2.15 on 2022-08-23 12:25
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Interfaces',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(error_messages={'required': 'No interface name has been entered'}, max_length=20, verbose_name='name')),
('type', models.CharField(max_length=12, verbose_name='status')),
('state', models.CharField(max_length=100, verbose_name='device')),
('mac', models.CharField(max_length=24, verbose_name='forward')),
],
options={
'managed': False,
},
),
]