1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| # Generated by Django 3.2.16 on 2023-02-03 11:37
|
| from django.db import migrations, models
|
|
| class Migration(migrations.Migration):
|
| dependencies = [
| ('projects', '0019_labelstreamhistory'),
| ]
|
| operations = [
| migrations.AddConstraint(
| model_name='labelstreamhistory',
| constraint=models.UniqueConstraint(fields=('user', 'project'), name='unique_history'),
| ),
| ]
|
|