mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 15:17:57 +00:00
25 lines
578 B
Python
25 lines
578 B
Python
# Generated by Django 3.2.6 on 2021-09-07 09:18
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("api", "0078_sms_values"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="check",
|
|
name="slug",
|
|
field=models.CharField(blank=True, max_length=100),
|
|
),
|
|
migrations.AddIndex(
|
|
model_name="check",
|
|
index=models.Index(
|
|
fields=["project_id", "slug"], name="api_check_project_slug"
|
|
),
|
|
),
|
|
]
|