2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-09 21:30:54 +00:00

Add some unit testing for the SalesOrder model

This commit is contained in:
Oliver Walters
2020-04-27 11:32:20 +10:00
parent 5e309a62f7
commit 3685ca4b95
5 changed files with 182 additions and 11 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.0.5 on 2020-04-27 00:44
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('part', '0035_auto_20200406_0045'),
('order', '0031_auto_20200426_0612'),
]
operations = [
migrations.AlterUniqueTogether(
name='salesorderlineitem',
unique_together={('order', 'part')},
),
]