Skip to content

Commit

Permalink
Generate field migration
Browse files Browse the repository at this point in the history
  • Loading branch information
aristizabal95 committed Jul 22, 2024
1 parent 4be147f commit 77c639a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions server/dataset/migrations/0005_alter_dataset_description.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.20 on 2024-07-22 16:50

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('dataset', '0004_auto_20231211_1827'),
]

operations = [
migrations.AlterField(
model_name='dataset',
name='description',
field=models.CharField(blank=True, max_length=256),
),
]

0 comments on commit 77c639a

Please sign in to comment.