You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
584 B

  1. # Generated by Django 3.2.6 on 2021-09-08 12:57
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('accounts', '0044_auto_20210730_0942'),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name='project',
  10. name='ping_key',
  11. field=models.CharField(blank=True, max_length=128, null=True, unique=True),
  12. ),
  13. migrations.AddField(
  14. model_name='project',
  15. name='show_slugs',
  16. field=models.BooleanField(default=False),
  17. ),
  18. ]