~linuxgoose/bocpress

ref: bf5a4f305fc50b4b2b27ae59dc0e9ad9ad673c2a bocpress/main/migrations/0075_remove_api_key_null.py -rw-r--r-- 484 bytes
bf5a4f30Jordan Robinson add bold to username in dashboard welcome text 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Generated by Django 4.0.3 on 2022-04-12 22:41

from django.db import migrations, models

import main.models


class Migration(migrations.Migration):
    dependencies = [
        ("main", "0074_populate_api_key_values"),
    ]

    operations = [
        migrations.AlterField(
            model_name="user",
            name="api_key",
            field=models.CharField(
                default=main.models._generate_key, max_length=32, unique=True
            ),
        ),
    ]