24 lines
532 B
Python
24 lines
532 B
Python
# Generated by Django 4.2.17 on 2025-01-20 15:34
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('datasets', '0003_project'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='dataset',
|
|
name='description',
|
|
field=models.TextField(default=''),
|
|
),
|
|
migrations.AddField(
|
|
model_name='project',
|
|
name='description',
|
|
field=models.TextField(default=''),
|
|
),
|
|
]
|