mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-10 03:49:24 +00:00
Addition of the ShoppingList view to know the item to buy
This commit is contained in:
19
stock/migrations/0014_auto_20161228_1717.py
Normal file
19
stock/migrations/0014_auto_20161228_1717.py
Normal file
@ -0,0 +1,19 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stock', '0013_auto_20161228_1006'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='shoppinglist',
|
||||
name='stock_owner',
|
||||
field=models.ForeignKey(related_name='shopping_lists', null=True, to='stock.Stock'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user