26 lines
746 B
Python
26 lines
746 B
Python
# Generated by Django 3.0 on 2020-09-25 07:13
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Tasks',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(default='', max_length=200)),
|
|
('desc', models.TextField(blank=True, max_length=3000)),
|
|
('created_area_date', models.DateField(blank=True, default=datetime.date.today)),
|
|
('visible', models.BooleanField(default=True)),
|
|
],
|
|
),
|
|
]
|