24 lines
701 B
Python
24 lines
701 B
Python
|
# Generated by Django 4.2.17 on 2025-01-20 15:31
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('datasets', '0002_alter_dataset_size_alter_dataset_task_type'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Project',
|
||
|
fields=[
|
||
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
||
|
('name', models.CharField(max_length=255)),
|
||
|
('user', models.CharField(max_length=100)),
|
||
|
('task_type', models.CharField(max_length=16)),
|
||
|
('create_time', models.DateTimeField(auto_now_add=True)),
|
||
|
],
|
||
|
),
|
||
|
]
|