mirror of
https://github.com/fspc/workstand.git
synced 2025-04-04 10:03:22 -04:00
* Linting. * Clean up. * Hope this makes installs better. * Rework edit member form with notes and banned and suspended. * Add slack notifications. * Display new member statuses. * Update docker run command migrate, collectstatic, and rebuild_index * Formatting and only push when master. * Don’t need this for an edit page. * More meaningful action. * Add testing requirements. * Run tests during build. * Use prod settings for testing. * Nail down the order of those tests.
31 lines
772 B
Python
31 lines
772 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.4 on 2017-02-15 03:08
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('registration', '0002_auto_20161130_0157'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='member',
|
|
name='banned',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
migrations.AddField(
|
|
model_name='member',
|
|
name='notes',
|
|
field=models.TextField(blank=True, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='member',
|
|
name='suspended',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|