Add tests
This commit is contained in:
parent
19241803f2
commit
57267df15c
4 changed files with 195 additions and 3 deletions
18
feedvault/migrations/0002_alter_feed_status.py
Normal file
18
feedvault/migrations/0002_alter_feed_status.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 5.0.3 on 2024-03-15 13:21
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('feedvault', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='feed',
|
||||
name='status',
|
||||
field=models.IntegerField(null=True),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue