-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
guoshijiang
committed
Mar 25, 2024
1 parent
ddb7084
commit 66c9f31
Showing
2 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
website/migrations/0004_alter_blog_link_url_alter_event_link_url_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Generated by Django 4.1.1 on 2024-03-25 14:18 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('website', '0003_event_image'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='blog', | ||
name='link_url', | ||
field=models.CharField(default='', max_length=500, verbose_name='博客链接'), | ||
), | ||
migrations.AlterField( | ||
model_name='event', | ||
name='link_url', | ||
field=models.CharField(default='', max_length=500, verbose_name='事件链接'), | ||
), | ||
migrations.AlterField( | ||
model_name='forum', | ||
name='link_url', | ||
field=models.CharField(default='', max_length=500, verbose_name='form 链接'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters