28 lines
791 B
Python
28 lines
791 B
Python
# Generated by Django 3.2.7 on 2023-02-08 22:10
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('interface', '0002_auto_20230202_0804'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='ensemble',
|
|
options={'ordering': ('slug',)},
|
|
),
|
|
migrations.AddField(
|
|
model_name='ensemble',
|
|
name='auth',
|
|
field=models.SmallIntegerField(default=1, help_text='Increment this to reset the authentication links'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='project',
|
|
name='auth',
|
|
field=models.SmallIntegerField(default=1, help_text='Increment this to reset the authentication links'),
|
|
),
|
|
]
|