Add migration
This commit is contained in:
parent
4847b02c90
commit
2d287dff32
1 changed files with 18 additions and 0 deletions
18
feedler/migrations/0009_entry_expire_at.py
Normal file
18
feedler/migrations/0009_entry_expire_at.py
Normal 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'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue