Skip to content

Commit

Permalink
add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jefer94 committed Jun 7, 2024
1 parent 19e4a8f commit 8ed5f86
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Generated by Django 5.0.6 on 2024-06-07 06:12

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('monitoring', '0022_supervisorissue_attempts_supervisorissue_code_and_more'),
]

operations = [
migrations.AddField(
model_name='repositorysubscription',
name='last_call',
field=models.DateTimeField(blank=True,
default=None,
help_text='Last time github notified updates on this repo subscription',
null=True),
),
]

0 comments on commit 8ed5f86

Please sign in to comment.