chore: remove sample comments
TS Lint / ESLint (push) Successful in 7m49s
Python Lint CI / ruff (push) Successful in 8m2s
Python Lint CI / ty (push) Successful in 8m1s
Python Lint CI / ruff-format-check (push) Successful in 8m1s
TS Lint / Oxlint (push) Successful in 4m11s
TS Lint / TypeScript (push) Successful in 4m6s
TS Lint / ESLint (push) Successful in 7m49s
Python Lint CI / ruff (push) Successful in 8m2s
Python Lint CI / ty (push) Successful in 8m1s
Python Lint CI / ruff-format-check (push) Successful in 8m1s
TS Lint / Oxlint (push) Successful in 4m11s
TS Lint / TypeScript (push) Successful in 4m6s
This commit is contained in:
@@ -4,18 +4,23 @@ from uuid import uuid4
|
||||
from tortoise import fields
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
operations = [
|
||||
ops.CreateModel(
|
||||
name='Comment',
|
||||
name='Task',
|
||||
fields=[
|
||||
('id', fields.UUIDField(primary_key=True, default=uuid4, unique=True, db_index=True)),
|
||||
('created_at', fields.DatetimeField(auto_now=False, auto_now_add=True)),
|
||||
('updated_at', fields.DatetimeField(auto_now=True, auto_now_add=False)),
|
||||
('content', fields.TextField(unique=False)),
|
||||
('list_name', fields.CharField(db_index=True, max_length=32)),
|
||||
('name', fields.TextField(unique=False)),
|
||||
('reset_cron', fields.CharField(null=True, max_length=32)),
|
||||
('check_date', fields.DatetimeField(null=True, auto_now=False, auto_now_add=False)),
|
||||
('previous_check_date', fields.DatetimeField(null=True, auto_now=False, auto_now_add=False)),
|
||||
],
|
||||
options={'table': 'comment', 'app': 'models', 'pk_attr': 'id'},
|
||||
options={'table': 'task', 'app': 'models', 'pk_attr': 'id'},
|
||||
bases=['AbstractModel'],
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user