Skip to content

Commit 41ce86f

Browse files
committed
Merge old model changes that never made it into migrations
1 parent aa00173 commit 41ce86f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pgcommitfest/commitfest/migrations/0001_initial.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ class Migration(migrations.Migration):
9393
fields=[
9494
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
9595
('name', models.CharField(max_length=500, verbose_name=b'Description')),
96-
('wikilink', models.URLField(default=b'', null=True, blank=True)),
97-
('gitlink', models.URLField(default=b'', null=True, blank=True)),
96+
('wikilink', models.URLField(default=b'', null=False, blank=True)),
97+
('gitlink', models.URLField(default=b'', null=False, blank=True)),
9898
('created', models.DateTimeField(auto_now_add=True)),
9999
('modified', models.DateTimeField()),
100100
('lastmail', models.DateTimeField(null=True, blank=True)),

0 commit comments

Comments
 (0)