Skip to content

Commit

Permalink
Make migration
Browse files Browse the repository at this point in the history
Will be squashed later
  • Loading branch information
FreneticScribbler committed Jun 27, 2023
1 parent c2ff718 commit c4d0d8e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions RIGS/migrations/0051_alter_event_forum_url.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.2.19 on 2023-06-27 10:31

import RIGS.models
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('RIGS', '0050_event_forum_url'),
]

operations = [
migrations.AlterField(
model_name='event',
name='forum_url',
field=models.URLField(blank=True, null=True, validators=[RIGS.models.validate_forum_url]),
),
]

0 comments on commit c4d0d8e

Please sign in to comment.