1
1
# Generated by Django 5.2 on 2024-08-09 16:40
2
2
3
3
from django .db import migrations , models
4
+ from oauth2_provider .settings import oauth2_settings
4
5
5
6
6
7
class Migration (migrations .Migration ):
7
8
8
9
dependencies = [
9
10
('tests' , '0005_basetestapplication_allowed_origins_and_more' ),
11
+ migrations .swappable_dependency (oauth2_settings .REFRESH_TOKEN_MODEL )
10
12
]
11
13
12
14
operations = [
@@ -15,29 +17,4 @@ class Migration(migrations.Migration):
15
17
name = 'token_family' ,
16
18
field = models .UUIDField (blank = True , editable = False , null = True ),
17
19
),
18
- migrations .AlterField (
19
- model_name = 'basetestapplication' ,
20
- name = 'allowed_origins' ,
21
- field = models .TextField (blank = True , default = '' , help_text = 'Allowed origins list to enable CORS, space separated' ),
22
- ),
23
- migrations .AlterField (
24
- model_name = 'basetestapplication' ,
25
- name = 'post_logout_redirect_uris' ,
26
- field = models .TextField (blank = True , default = '' , help_text = 'Allowed Post Logout URIs list, space separated' ),
27
- ),
28
- migrations .AlterField (
29
- model_name = 'sampleaccesstoken' ,
30
- name = 'token' ,
31
- field = models .CharField (db_index = True , max_length = 255 , unique = True ),
32
- ),
33
- migrations .AlterField (
34
- model_name = 'sampleapplication' ,
35
- name = 'allowed_origins' ,
36
- field = models .TextField (blank = True , default = '' , help_text = 'Allowed origins list to enable CORS, space separated' ),
37
- ),
38
- migrations .AlterField (
39
- model_name = 'sampleapplication' ,
40
- name = 'post_logout_redirect_uris' ,
41
- field = models .TextField (blank = True , default = '' , help_text = 'Allowed Post Logout URIs list, space separated' ),
42
- ),
43
20
]
0 commit comments