This repository has been archived on 2024-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
2020-10-17 22:39:07 -04:00

30 lines
1.0 KiB
Python

# Generated by Django 3.1.2 on 2020-10-18 01:53
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Migration',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('submit_time', models.DateTimeField(verbose_name='migrtation submitted on')),
('domain', models.CharField(max_length=200)),
('booked_time', models.DateTimeField(verbose_name='Migration booked for')),
('original_server', models.CharField(max_length=200)),
('new_server', models.CharField(max_length=200)),
('username', models.CharField(max_length=200)),
('notes', models.CharField(max_length=1024)),
('brand', models.CharField(max_length=200)),
('ticket_url', models.CharField(max_length=200)),
],
),
]