mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
c546ed5dcd
- Use markdownify for rendering - Use markdownx for editing
20 lines
451 B
Python
20 lines
451 B
Python
# Generated by Django 2.2.9 on 2020-01-31 10:22
|
|
|
|
from django.db import migrations
|
|
import markdownx.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('part', '0025_auto_20191118_2316'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='part',
|
|
name='notes',
|
|
field=markdownx.models.MarkdownxField(help_text='Part notes - supports Markdown formatting'),
|
|
),
|
|
]
|