19 lines
399 B
Python
19 lines
399 B
Python
|
# Generated by Django 5.0.2 on 2024-02-11 12:55
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('primary', '0005_image_content_image_height_image_width'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='site',
|
||
|
name='header',
|
||
|
field=models.TextField(default=''),
|
||
|
),
|
||
|
]
|