Skip to content

Commit b1218b7

Browse files
committed
done
1 parent f4dad0f commit b1218b7

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Generated by Django 5.1.6 on 2025-03-02 14:12
2+
3+
import django.contrib.postgres.fields
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
dependencies = [
9+
("website", "0211_alter_githubreview_review_id"),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name="organization",
15+
name="categories",
16+
field=django.contrib.postgres.fields.ArrayField(
17+
base_field=models.CharField(max_length=100), blank=True, default=list, size=None
18+
),
19+
),
20+
migrations.AddField(
21+
model_name="organization",
22+
name="contributor_guidance_url",
23+
field=models.URLField(blank=True, null=True),
24+
),
25+
migrations.AddField(
26+
model_name="organization",
27+
name="ideas_link",
28+
field=models.URLField(blank=True, null=True),
29+
),
30+
migrations.AddField(
31+
model_name="organization",
32+
name="license",
33+
field=models.CharField(blank=True, max_length=100, null=True),
34+
),
35+
migrations.AddField(
36+
model_name="organization",
37+
name="source_code",
38+
field=models.URLField(blank=True, null=True),
39+
),
40+
migrations.AddField(
41+
model_name="organization",
42+
name="tagline",
43+
field=models.CharField(blank=True, max_length=255, null=True),
44+
),
45+
migrations.AddField(
46+
model_name="organization",
47+
name="tech_tags",
48+
field=django.contrib.postgres.fields.ArrayField(
49+
base_field=models.CharField(max_length=100), blank=True, default=list, size=None
50+
),
51+
),
52+
migrations.AddField(
53+
model_name="organization",
54+
name="topic_tags",
55+
field=django.contrib.postgres.fields.ArrayField(
56+
base_field=models.CharField(max_length=100), blank=True, default=list, size=None
57+
),
58+
),
59+
]

0 commit comments

Comments
 (0)