Coverage for apps / core / migrations / 0001_initial.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-11 00:40 +0000

1# Generated by Django 5.2.10 on 2026-01-07 14:30 

2 

3from django.db import migrations, models 

4 

5 

6class Migration(migrations.Migration): 

7 

8 initial = True 

9 

10 dependencies = [ 

11 ] 

12 

13 operations = [ 

14 migrations.CreateModel( 

15 name='AppSettings', 

16 fields=[ 

17 ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), 

18 ('openrouter_api_key', models.CharField(blank=True, max_length=500)), 

19 ('default_ai_model', models.CharField(default='anthropic/claude-3.5-haiku', max_length=100)), 

20 ], 

21 options={ 

22 'verbose_name': 'App Settings', 

23 'verbose_name_plural': 'App Settings', 

24 }, 

25 ), 

26 ] 

← Back to Dashboard