add coming soon feature

This commit is contained in:
Tobias Brunner 2025-02-26 15:27:56 +01:00
parent 5c626b0212
commit bde13d4d95
No known key found for this signature in database
5 changed files with 42 additions and 1 deletions

View file

@ -0,0 +1,18 @@
# Generated by Django 5.1.5 on 2025-02-26 14:17
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("services", "0006_cloudprovider_is_featured_and_more"),
]
operations = [
migrations.AddField(
model_name="service",
name="is_coming_soon",
field=models.BooleanField(default=False),
),
]