Coverage for ivatar/ivataraccount/migrations/0011_auto_20181107_1550.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-10-15 23:05 +0000

1# -*- coding: utf-8 -*- 

2# Generated by Django 2.1.3 on 2018-11-07 15:50 

3 

4from django.db import migrations, models 

5 

6 

7class Migration(migrations.Migration): 

8 

9 dependencies = [ 

10 ("ivataraccount", "0010_auto_20180705_1201"), 

11 ] 

12 

13 operations = [ 

14 migrations.AddField( 

15 model_name="photo", 

16 name="access_count", 

17 field=models.BigIntegerField(default=0, editable=False), 

18 ), 

19 migrations.AlterField( 

20 model_name="userpreference", 

21 name="theme", 

22 field=models.CharField( 

23 choices=[ 

24 ("default", "Default theme"), 

25 ("clime", "climes theme"), 

26 ("falko", "falkos theme"), 

27 ], 

28 default="default", 

29 max_length=10, 

30 ), 

31 ), 

32 ]