Coverage for src/django_audit_log/migrations/0002_accesslog_user_agent.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.8.0, created at 2025-05-02 11:43 +0700

1# Generated by Django 5.1.7 on 2025-04-02 07:04 

2 

3from django.db import migrations, models 

4 

5 

6class Migration(migrations.Migration): 

7 

8 dependencies = [ 

9 ('django_audit_log', '0001_initial'), 

10 ] 

11 

12 operations = [ 

13 migrations.AddField( 

14 model_name='accesslog', 

15 name='user_agent', 

16 field=models.TextField(blank=True, help_text='User Agent string', null=True), 

17 ), 

18 ]