mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-13 01:33:21 +00:00
20 lines
438 B
Python
20 lines
438 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('counter', '0005_auto_20160717_1029'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='selling',
|
|
name='customer',
|
|
field=models.ForeignKey(to='counter.Customer', related_name='buyings'),
|
|
),
|
|
]
|