Coverage for website/migrations/0002_post_meta_description.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.5.0, created at 2025-09-13 15:29 -0300

1# Generated by Django 5.0.3 on 2025-08-22 12:04 

2 

3from django.db import migrations, models 

4 

5 

6class Migration(migrations.Migration): 

7 dependencies = [ 

8 ("website", "0001_initial"), 

9 ] 

10 

11 operations = [ 

12 migrations.AddField( 

13 model_name="post", 

14 name="meta_description", 

15 field=models.CharField( 

16 blank=True, 

17 help_text="SEO meta description (max 160 characters)", 

18 max_length=160, 

19 null=True, 

20 ), 

21 ), 

22 ]