1
- # Generated by Django 5.1.6 on 2025-03-02 16:09
1
+ # Generated by Django 5.1.6 on 2025-03-02 16:20
2
2
3
3
import django .contrib .postgres .fields
4
4
import django .db .models .expressions
5
5
from django .db import migrations , models
6
6
7
+ import website .models
8
+
7
9
8
10
class Migration (migrations .Migration ):
9
11
dependencies = [
@@ -15,7 +17,7 @@ class Migration(migrations.Migration):
15
17
model_name = "organization" ,
16
18
name = "categories" ,
17
19
field = django .contrib .postgres .fields .ArrayField (
18
- base_field = models .CharField (max_length = 100 ), blank = True , default = dict , size = None
20
+ base_field = models .CharField (max_length = 100 ), blank = True , default = website . models . default_list , size = None
19
21
),
20
22
),
21
23
migrations .AddField (
@@ -47,14 +49,14 @@ class Migration(migrations.Migration):
47
49
model_name = "organization" ,
48
50
name = "tech_tags" ,
49
51
field = django .contrib .postgres .fields .ArrayField (
50
- base_field = models .CharField (max_length = 100 ), blank = True , default = dict , size = None
52
+ base_field = models .CharField (max_length = 100 ), blank = True , default = website . models . default_list , size = None
51
53
),
52
54
),
53
55
migrations .AddField (
54
56
model_name = "organization" ,
55
57
name = "topic_tags" ,
56
58
field = django .contrib .postgres .fields .ArrayField (
57
- base_field = models .CharField (max_length = 100 ), blank = True , default = dict , size = None
59
+ base_field = models .CharField (max_length = 100 ), blank = True , default = website . models . default_list , size = None
58
60
),
59
61
),
60
62
migrations .AlterField (
0 commit comments