24 lines
529 B
Python
24 lines
529 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2017-09-26 10:16
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("members", "0016_auto_20170925_1924"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name="member",
|
|
options={
|
|
"permissions": (
|
|
("check_by_email", "Can check if user exists by email"),
|
|
)
|
|
},
|
|
),
|
|
]
|