pr_manager/apps/pr/migrations/0004_gitconfig_reviewer.py

21 lines
523 B
Python

# Generated by Django 5.1.6 on 2025-03-03 15:00
import simplepro.components.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("pr", "0003_projectconfig_project_url"),
]
operations = [
migrations.AddField(
model_name="gitconfig",
name="reviewer",
field=simplepro.components.fields.CharField(
blank=True, max_length=16, null=True, verbose_name="项目管理员"
),
),
]