新增忽略
This commit is contained in:
parent
ae0600ba51
commit
152f266884
4
.gitignore
vendored
4
.gitignore
vendored
@ -160,3 +160,7 @@ cython_debug/
|
|||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
#.idea/
|
#.idea/
|
||||||
|
|
||||||
|
# 项目
|
||||||
|
SinkDark/static/
|
||||||
|
SinkDark/*/migrations
|
||||||
|
|
||||||
|
19
SinkDark/article/migrations/0002_articleinfo_rendered.py
Normal file
19
SinkDark/article/migrations/0002_articleinfo_rendered.py
Normal 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='最终内容'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user