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
496 B
Python
23 lines
496 B
Python
# Generated by Django 3.2.19 on 2023-11-09 11:09
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('app', '0010_task'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='task',
|
|
name='id',
|
|
),
|
|
migrations.AddField(
|
|
model_name='task',
|
|
name='taskId',
|
|
field=models.AutoField(default=None, primary_key=True, serialize=False),
|
|
),
|
|
]
|