Skip to content

Commit 271ebd8

Browse files
committed
done
1 parent 2afa3de commit 271ebd8

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Generated by Django 5.1.6 on 2025-03-02 14:32
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("website", "0212_organization_categories_and_more"),
9+
]
10+
11+
operations = [
12+
migrations.AlterField(
13+
model_name="organization",
14+
name="twitter",
15+
field=models.CharField(blank=True, max_length=255, null=True),
16+
),
17+
]

website/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class Organization(models.Model):
125125
logo = models.ImageField(upload_to="organization_logos", null=True, blank=True)
126126
url = models.URLField(unique=True)
127127
email = models.EmailField(null=True, blank=True)
128-
twitter = models.CharField(max_length=30, null=True, blank=True)
128+
twitter = models.CharField(max_length=255, null=True, blank=True)
129129
facebook = models.URLField(null=True, blank=True)
130130
created = models.DateTimeField(auto_now_add=True)
131131
modified = models.DateTimeField(auto_now=True)

0 commit comments

Comments
 (0)