1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 12:04:15 +00:00
webvirtcloud/computes/migrations/0001_initial.py

27 lines
830 B
Python
Raw Normal View History

# Generated by Django 2.2.10 on 2020-01-28 07:01
2015-02-27 08:53:51 +00:00
from django.db import migrations, models
2015-02-27 08:53:51 +00:00
class Migration(migrations.Migration):
initial = True
2015-02-27 08:53:51 +00:00
dependencies = [
]
operations = [
migrations.CreateModel(
name='Compute',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=64)),
('hostname', models.CharField(max_length=64)),
2015-02-27 08:53:51 +00:00
('login', models.CharField(max_length=20)),
('password', models.CharField(blank=True, max_length=14, null=True)),
('details', models.CharField(blank=True, max_length=64, null=True)),
2015-02-27 08:53:51 +00:00
('type', models.IntegerField()),
],
),
]