diff --git a/.gitignore b/.gitignore index 5d381cc..6df2740 100644 --- a/.gitignore +++ b/.gitignore @@ -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 + diff --git a/SinkDark/article/migrations/0002_articleinfo_rendered.py b/SinkDark/article/migrations/0002_articleinfo_rendered.py new file mode 100644 index 0000000..dd054c0 --- /dev/null +++ b/SinkDark/article/migrations/0002_articleinfo_rendered.py @@ -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='

默认内容

', verbose_name='最终内容'), + ), + ]