新增忽略

This commit is contained in:
跨越晨昏 2024-09-20 20:29:29 +08:00
parent ae0600ba51
commit 152f266884
2 changed files with 23 additions and 0 deletions

4
.gitignore vendored
View File

@ -160,3 +160,7 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# 项目
SinkDark/static/
SinkDark/*/migrations

View File

@ -0,0 +1,19 @@
# Generated by Django 5.1.1 on 2024-09-20 12:22
import ckeditor_uploader.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('article', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='articleinfo',
name='rendered',
field=ckeditor_uploader.fields.RichTextUploadingField(default='<p>默认内容</p>', verbose_name='最终内容'),
),
]