forked from uncloud/uncloud
24 lines
594 B
Python
24 lines
594 B
Python
|
# Generated by Django 3.0.3 on 2020-02-21 10:22
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='VM',
|
||
|
fields=[
|
||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('vmid', models.IntegerField()),
|
||
|
('owner', models.CharField(max_length=128)),
|
||
|
('data', models.CharField(max_length=65536)),
|
||
|
],
|
||
|
),
|
||
|
]
|