mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-09 16:58:49 +00:00
* Remove reliance on django-markdownx - We are now rendering notes on the client side using easymde - No longer any need to utilize the markdownx integration - Adds character limit for notes fields` * Adjust legacy migrations - remove references to markdownx * Fix bug for company notes field
20 lines
498 B
Python
20 lines
498 B
Python
# Generated by Django 3.2.13 on 2022-06-20 11:23
|
|
|
|
import InvenTree.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('company', '0044_auto_20220607_2204'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='company',
|
|
name='notes',
|
|
field=InvenTree.fields.InvenTreeNotesField(blank=True, help_text='Company Notes', max_length=50000, null=True, verbose_name='Notes'),
|
|
),
|
|
]
|