pr_manager/apps/pr/migrations/0003_projectconfig_project_url.py

21 lines
517 B
Python

# Generated by Django 5.1.6 on 2025-02-27 11:40
import simplepro.components.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("pr", "0002_projecthistory"),
]
operations = [
migrations.AddField(
model_name="projectconfig",
name="project_url",
field=simplepro.components.fields.CharField(
blank=True, max_length=256, null=True, verbose_name="项目地址"
),
),
]