mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-04 00:52:49 +00:00
a01c9e2303
This field is a boolean indicating if the article can be purshased by nonmembers.
20 lines
536 B
Python
20 lines
536 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.29 on 2020-09-25 16:45
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cotisations', '0045_separation_membership_connection_p3'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='article',
|
|
name='need_membership',
|
|
field=models.BooleanField(default=True, verbose_name='can be purcharsed without membership'),
|
|
),
|
|
]
|