removed migration files

This commit is contained in:
guntherweissenbaeck 2023-10-16 22:18:16 +02:00
parent c49ae1989a
commit 923ba510e4
7 changed files with 0 additions and 228 deletions

View file

@ -1,26 +0,0 @@
# Generated by Django 4.2.5 on 2023-10-16 18:42
from django.db import migrations, models
import uuid
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Contact',
fields=[
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
('name', models.CharField(blank=True, max_length=50, null=True, verbose_name='Kontakt Name')),
('phone', models.CharField(blank=True, max_length=50, null=True, verbose_name='Telefon')),
('email', models.CharField(blank=True, max_length=50, null=True, verbose_name='Email')),
('address', models.CharField(blank=True, max_length=50, null=True, verbose_name='Adresse')),
('comment', models.CharField(blank=True, max_length=50, null=True, verbose_name='Bemerkungen')),
],
),
]

View file

@ -1,17 +0,0 @@
# Generated by Django 4.2.6 on 2023-10-16 19:34
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('contact', '0001_initial'),
]
operations = [
migrations.AlterModelOptions(
name='contact',
options={'verbose_name': 'Kontakt', 'verbose_name_plural': 'Kontakte'},
),
]