blob: ec176b7f2a9d2f1b0f45701c520d1d917f30563b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 4.2.2 on 2023-07-10 19:11
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('posts', '0003_alter_post_date_last_pub'),
]
operations = [
migrations.AlterField(
model_name='post',
name='update_frequency',
field=models.BigIntegerField(help_text='In days'),
),
]
|