1
- # Generated by Django 4.1.6 on 2023-02-06 15:34
2
-
3
1
from django .db import migrations , models
4
2
import django .db .models .deletion
5
3
@@ -12,6 +10,7 @@ class Migration(migrations.Migration):
12
10
]
13
11
14
12
operations = [
13
+ # ConfigContexts
15
14
migrations .AddField (
16
15
model_name = 'configcontext' ,
17
16
name = 'data_file' ,
@@ -32,4 +31,25 @@ class Migration(migrations.Migration):
32
31
name = 'data_synced' ,
33
32
field = models .DateTimeField (blank = True , editable = False , null = True ),
34
33
),
34
+ # ExportTemplates
35
+ migrations .AddField (
36
+ model_name = 'exporttemplate' ,
37
+ name = 'data_file' ,
38
+ field = models .ForeignKey (blank = True , null = True , on_delete = django .db .models .deletion .SET_NULL , related_name = '+' , to = 'core.datafile' ),
39
+ ),
40
+ migrations .AddField (
41
+ model_name = 'exporttemplate' ,
42
+ name = 'data_path' ,
43
+ field = models .CharField (blank = True , editable = False , max_length = 1000 ),
44
+ ),
45
+ migrations .AddField (
46
+ model_name = 'exporttemplate' ,
47
+ name = 'data_source' ,
48
+ field = models .ForeignKey (blank = True , null = True , on_delete = django .db .models .deletion .PROTECT , related_name = '+' , to = 'core.datasource' ),
49
+ ),
50
+ migrations .AddField (
51
+ model_name = 'exporttemplate' ,
52
+ name = 'data_synced' ,
53
+ field = models .DateTimeField (blank = True , editable = False , null = True ),
54
+ ),
35
55
]
0 commit comments