You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
408 B
Python
19 lines
408 B
Python
2 years ago
|
# Generated by Django 4.1.4 on 2023-01-08 02:10
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('mensaviewer', '0020_newsarticle_timestamp'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='newsarticle',
|
||
|
name='title',
|
||
|
field=models.CharField(blank=True, max_length=144),
|
||
|
),
|
||
|
]
|