mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-08 08:18:50 +00:00
20 lines
443 B
Python
20 lines
443 B
Python
# Generated by Django 2.2.9 on 2020-02-01 23:46
|
|
|
|
from django.db import migrations
|
|
import markdownx.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('order', '0014_auto_20191118_2328'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='purchaseorder',
|
|
name='notes',
|
|
field=markdownx.models.MarkdownxField(blank=True, help_text='Order notes'),
|
|
),
|
|
]
|