File tree Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Generated by Django 3.2 on 2022-03-03 07:30
2
+
3
+ from django .db import migrations , models
4
+
5
+
6
+ class Migration (migrations .Migration ):
7
+
8
+ dependencies = [
9
+ ("debunkbot" , "0026_auto_20220127_0245" ),
10
+ ]
11
+
12
+ operations = [
13
+ migrations .AlterField (
14
+ model_name = "googlesheetcredentials" ,
15
+ name = "credentials" ,
16
+ field = models .JSONField (
17
+ help_text = "The service account key needed by \
18
+ the application to access Google Sheet data."
19
+ ),
20
+ ),
21
+ migrations .AlterField (
22
+ model_name = "impact" ,
23
+ name = "data" ,
24
+ field = models .JSONField (),
25
+ ),
26
+ migrations .AlterField (
27
+ model_name = "reply" ,
28
+ name = "data" ,
29
+ field = models .JSONField (),
30
+ ),
31
+ migrations .AlterField (
32
+ model_name = "tweet" ,
33
+ name = "tweet" ,
34
+ field = models .JSONField (),
35
+ ),
36
+ ]
Original file line number Diff line number Diff line change 1
1
from django .conf import settings
2
- from django .contrib .postgres .fields import ArrayField , JSONField
2
+ from django .contrib .postgres .fields import ArrayField
3
3
from django .core .exceptions import ValidationError
4
4
from django .db import models
5
+ from django .db .models import JSONField
5
6
from django .db .models .signals import post_save
6
7
from django .dispatch import receiver
7
8
from rest_framework .authtoken .models import Token
You can’t perform that action at this time.
0 commit comments