26 lines
566 B
Python
26 lines
566 B
Python
|
# Generated by Django 4.1.5 on 2023-09-16 14:09
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('auth', '0012_alter_user_first_name_max_length'),
|
||
|
('membership', '0004_alter_membership_period'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Member',
|
||
|
fields=[
|
||
|
],
|
||
|
options={
|
||
|
'proxy': True,
|
||
|
'indexes': [],
|
||
|
'constraints': [],
|
||
|
},
|
||
|
bases=('auth.user',),
|
||
|
),
|
||
|
]
|