File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Generated by Django 3.2.15 on 2023-07-05 18:37
2
+
3
+ from django .db import migrations , models
4
+
5
+
6
+ class Migration (migrations .Migration ):
7
+
8
+ dependencies = [
9
+ ('hub' , '0010_do_nothing' ),
10
+ ]
11
+
12
+ operations = [
13
+ migrations .AddField (
14
+ model_name = 'extrauserdetail' ,
15
+ name = 'private_data' ,
16
+ field = models .JSONField (default = dict ),
17
+ ),
18
+ ]
Original file line number Diff line number Diff line change @@ -145,6 +145,7 @@ class ExtraUserDetail(StandardizeSearchableFieldMixin, models.Model):
145
145
related_name = 'extra_details' ,
146
146
on_delete = models .CASCADE )
147
147
data = models .JSONField (default = dict )
148
+ private_data = models .JSONField (default = dict )
148
149
date_removal_requested = models .DateTimeField (null = True )
149
150
date_removed = models .DateTimeField (null = True )
150
151
You can’t perform that action at this time.
0 commit comments