Skip to content

Commit

Permalink
Create migration for adding image hash
Browse files Browse the repository at this point in the history
  • Loading branch information
aristizabal95 committed Jul 27, 2023
1 parent a09dc66 commit b7fd04e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions server/mlcube/migrations/0004_auto_20230727_1954.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 3.2.16 on 2023-07-27 19:54

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('mlcube', '0003_auto_20221109_1340'),
]

operations = [
migrations.AddField(
model_name='mlcube',
name='image_hash',
field=models.CharField(blank=True, max_length=100),
),
migrations.AlterUniqueTogether(
name='mlcube',
unique_together={('image_tarball_url', 'image_tarball_hash', 'image_hash', 'additional_files_tarball_url', 'additional_files_tarball_hash', 'git_mlcube_url', 'mlcube_hash', 'git_parameters_url', 'parameters_hash')},
),
]

0 comments on commit b7fd04e

Please sign in to comment.