-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7d40496
commit df4348d
Showing
7 changed files
with
159 additions
and
6 deletions.
There are no files selected for viewing
53 changes: 53 additions & 0 deletions
53
home/migrations/0122_historicalpage_parsing_last_validated_at_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Generated by Django 5.0.9 on 2024-11-01 22:06 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('home', '0121_rename_is_exception_rule_historicaloneoffschedule_is_cancellation_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='historicalpage', | ||
name='parsing_last_validated_at', | ||
field=models.DateTimeField(blank=True, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalpage', | ||
name='parsing_validation_counter', | ||
field=models.SmallIntegerField(default=0), | ||
), | ||
migrations.AddField( | ||
model_name='historicalwebsite', | ||
name='parsing_last_validated_at', | ||
field=models.DateTimeField(blank=True, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalwebsite', | ||
name='parsing_validation_counter', | ||
field=models.SmallIntegerField(default=0), | ||
), | ||
migrations.AddField( | ||
model_name='page', | ||
name='parsing_last_validated_at', | ||
field=models.DateTimeField(blank=True, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='page', | ||
name='parsing_validation_counter', | ||
field=models.SmallIntegerField(default=0), | ||
), | ||
migrations.AddField( | ||
model_name='website', | ||
name='parsing_last_validated_at', | ||
field=models.DateTimeField(blank=True, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='website', | ||
name='parsing_validation_counter', | ||
field=models.SmallIntegerField(default=0), | ||
), | ||
] |
35 changes: 35 additions & 0 deletions
35
home/migrations/0123_alter_historicaloneoffschedule_parsing_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Generated by Django 5.0.9 on 2024-11-01 23:10 | ||
|
||
import django.db.models.deletion | ||
import simple_history.models | ||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('home', '0122_historicalpage_parsing_last_validated_at_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='historicaloneoffschedule', | ||
name='parsing', | ||
field=simple_history.models.HistoricForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='home.parsing'), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalregularschedule', | ||
name='parsing', | ||
field=simple_history.models.HistoricForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='home.parsing'), | ||
), | ||
migrations.AlterField( | ||
model_name='oneoffschedule', | ||
name='parsing', | ||
field=simple_history.models.HistoricForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='one_off_schedules', to='home.parsing'), | ||
), | ||
migrations.AlterField( | ||
model_name='regularschedule', | ||
name='parsing', | ||
field=simple_history.models.HistoricForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='regular_schedules', to='home.parsing'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters