bornhack-website/src/teams/migrations/0008_team_needs_members.py

19 lines
440 B
Python
Raw Normal View History

2017-04-02 16:04:57 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-04-02 13:57
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("teams", "0007_teamarea_description")]
2017-04-02 16:04:57 +00:00
operations = [
migrations.AddField(
2019-06-16 12:32:24 +00:00
model_name="team",
name="needs_members",
2017-04-02 16:04:57 +00:00
field=models.BooleanField(default=True),
2019-06-16 12:32:24 +00:00
)
2017-04-02 16:04:57 +00:00
]