You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
myblog/App/migrations/0006_task.py

24 lines
773 B

# Generated by Django 3.2.9 on 2022-05-02 06:23
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('App', '0005_upload_url_path'),
]
operations = [
migrations.CreateModel(
name='Task',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('username', models.CharField(max_length=100)),
('task_time', models.DateTimeField(auto_now_add=True)),
('task_title', models.CharField(max_length=100)),
('task_status', models.BooleanField(default=False)),
('task_content', models.JSONField()),
],
),
]