forked from uncloud/uncloud
25 lines
660 B
Python
25 lines
660 B
Python
|
# Generated by Django 3.1 on 2020-10-11 19:59
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='UncloudProvider',
|
||
|
fields=[
|
||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('starting_date', models.DateField()),
|
||
|
('ending_date', models.DateField(blank=True)),
|
||
|
('name', models.CharField(max_length=256)),
|
||
|
('address', models.TextField()),
|
||
|
],
|
||
|
),
|
||
|
]
|