Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/TIHLDE/Lepton into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
MadsNyl committed Dec 26, 2024
2 parents c0cfb02 + b1cc7ea commit 4fc66d7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions app/group/migrations/0021_alter_group_description.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.1.1 on 2024-12-26 09:51

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("group", "0020_alter_membership_membership_type_and_more"),
]

operations = [
migrations.AlterField(
model_name="group",
name="description",
field=models.TextField(blank=True, null=True),
),
]
2 changes: 1 addition & 1 deletion app/group/models/group.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Group(OptionalImage, BaseModel, BasePermissionModel):

name = models.CharField(max_length=50)
slug = models.SlugField(max_length=50, primary_key=True)
description = models.TextField(max_length=1000, null=True, blank=True)
description = models.TextField(null=True, blank=True)
contact_email = models.EmailField(max_length=200, null=True, blank=True)
fine_info = models.TextField(default="", blank=True)
type = models.CharField(
Expand Down

0 comments on commit 4fc66d7

Please sign in to comment.