forked from DGNum/gestioCOF
20 lines
443 B
Python
20 lines
443 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('bda', '0009_revente'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='spectaclerevente',
|
||
|
name='shotgun',
|
||
|
field=models.BooleanField(default=False, verbose_name='Disponible imm\xe9diatement'),
|
||
|
),
|
||
|
]
|