Skip to content

Commit e812104

Browse files
committed
add migration
1 parent 8c8c65d commit e812104

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by Django 5.2.13 on 2026-07-17 06:34
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('codespeed', '0005_benchmark_source_result_suite_version'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='benchmark',
15+
name='name',
16+
field=models.CharField(max_length=100),
17+
),
18+
migrations.AlterUniqueTogether(
19+
name='benchmark',
20+
unique_together={('name', 'source')},
21+
),
22+
]

0 commit comments

Comments
 (0)