Skip to content

Commit

Permalink
fix migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
amyasnikov committed Jan 11, 2025
1 parent 2f7fedd commit 2f78bd6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions validity/migrations/0012_backuppoint.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 5.0.10 on 2025-01-03 01:07
# Generated by Django 5.0.10 on 2025-01-11 16:01

import django.core.validators
import django.db.models.deletion
Expand All @@ -24,7 +24,7 @@ class Migration(migrations.Migration):
('last_updated', models.DateTimeField(auto_now=True, null=True)),
('custom_field_data', models.JSONField(blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder)),
('name', models.CharField(max_length=255, unique=True)),
('backup_after_sync', models.BooleanField()),
('backup_after_sync', models.BooleanField(default=True)),
('method', models.CharField(max_length=20)),
('url', models.CharField(max_length=255, validators=[django.core.validators.URLValidator(schemes=['http', 'https'])])),
('ignore_rules', models.TextField(blank=True)),
Expand All @@ -39,6 +39,7 @@ class Migration(migrations.Migration):
'verbose_name': 'Backup Point',
'verbose_name_plural': 'Backup Points',
'ordering': ('name',),
'permissions': [('backup', 'Can back up Data Source contents')],
},
bases=(validity.models.base.SubformMixin, validity.models.base.URLMixin, models.Model),
),
Expand Down

0 comments on commit 2f78bd6

Please sign in to comment.