Skip to content

Commit

Permalink
add flags_id nullable field to new Flake model
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-sentry committed Jan 20, 2025
1 parent 6c6d5a1 commit c2d8643
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.16 on 2025-01-20 17:38

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('test_analytics', '0001_initial'),
]

operations = [
migrations.AddField(
model_name='flake',
name='flags_id',
field=models.BinaryField(null=True),
),
]
1 change: 1 addition & 0 deletions shared/django_apps/test_analytics/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class Flake(models.Model):

repoid = models.IntegerField()
test_id = models.BinaryField()
flags_id = models.BinaryField(null=True)

recent_passes_count = models.IntegerField()
count = models.IntegerField()
Expand Down

0 comments on commit c2d8643

Please sign in to comment.