mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 20:14:15 +00:00
25 lines
548 B
Python
25 lines
548 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('logs', '0002_auto_20150316_1420'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='logs',
|
||
|
name='instance',
|
||
|
field=models.CharField(max_length=50),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='logs',
|
||
|
name='user',
|
||
|
field=models.CharField(max_length=50),
|
||
|
),
|
||
|
]
|