Docker Build / build (push) Has been cancelled
Python Lint CI / ruff (push) Has been cancelled
Python Lint CI / ruff-format-check (push) Has been cancelled
Python Lint CI / ty (push) Has been cancelled
TS Lint / ESLint (push) Has been cancelled
TS Lint / Oxlint (push) Has been cancelled
TS Lint / TypeScript (push) Has been cancelled
22 lines
567 B
Python
22 lines
567 B
Python
from tortoise import migrations
|
|
from tortoise.migrations import operations as ops
|
|
from tortoise import fields
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [('models', '0001_initial')]
|
|
|
|
initial = False
|
|
|
|
operations = [
|
|
ops.AlterField(
|
|
model_name='Task',
|
|
name='list_name',
|
|
field=fields.CharField(db_index=True, max_length=128),
|
|
),
|
|
ops.AlterField(
|
|
model_name='Task',
|
|
name='reset_cron',
|
|
field=fields.CharField(null=True, max_length=64),
|
|
),
|
|
]
|