Add migration

This commit is contained in:
PCoder 2022-05-03 15:43:49 +05:30
parent 4847b02c90
commit 2d287dff32
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.2.13 on 2022-05-03 10:09
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('feedler', '0008_auto_20171117_1647'),
]
operations = [
migrations.AddField(
model_name='entry',
name='expire_at',
field=models.DateTimeField(blank=True, null=True, verbose_name='expiry date/time'),
),
]