Compare commits

..

No commits in common. "d96d2c590ea45818933aab348eb3bee3af1782a8" and "8393855514cde72beeda5353fb8748c04c011d82" have entirely different histories.

3 changed files with 2 additions and 22 deletions

View File

@ -17,7 +17,7 @@ from dotenv import load_dotenv
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
APP_VERSION = "0.1.4"
APP_VERSION = "0.1.3"
load_dotenv(BASE_DIR / ".env")

View File

@ -1,19 +0,0 @@
# Generated by Django 5.1.5 on 2025-04-23 20:09
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dispatcher', '0010_realsagexhours_unique_monthly_sagex'),
]
operations = [
migrations.AlterField(
model_name='project',
name='parent',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='dispatcher.parent'),
),
]

View File

@ -15,8 +15,7 @@ class Project(models.Model):
parent = models.ForeignKey(
Parent,
on_delete=models.CASCADE,
null=True,
blank=True
null=True
)
name = models.CharField(max_length=256)