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

add host name for logs beside others

This commit is contained in:
catborise 2021-05-31 11:39:09 +03:00
parent 70bc5a4408
commit 610efd5520
7 changed files with 85 additions and 62 deletions

View file

@ -0,0 +1,18 @@
# Generated by Django 2.2.20 on 2021-05-31 08:16
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('logs', '0002_auto_20200615_0637'),
]
operations = [
migrations.AddField(
model_name='logs',
name='host',
field=models.CharField(default='-', max_length=50, verbose_name='host'),
),
]