You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
657 B
Python

# Generated by Django 5.0.4 on 2024-05-23 08:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('customercore', '0018_alter_ticketattachment_file'),
]
operations = [
migrations.CreateModel(
name='File',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('existingPath', models.CharField(max_length=100, unique=True)),
('name', models.CharField(max_length=50)),
('eof', models.BooleanField()),
],
),
]