Compare commits
No commits in common. "7d3f13657f35c3d282f2d23ff8c989dd561484ae" and "756b51309a55e90ff818ea5af0e6027b64576af9" have entirely different histories.
7d3f13657f
...
756b51309a
@ -17,7 +17,7 @@ from dotenv import load_dotenv
|
|||||||
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
||||||
BASE_DIR = Path(__file__).resolve().parent.parent
|
BASE_DIR = Path(__file__).resolve().parent.parent
|
||||||
|
|
||||||
APP_VERSION = "0.1.4"
|
APP_VERSION = "0.1.3"
|
||||||
|
|
||||||
load_dotenv(BASE_DIR / ".env")
|
load_dotenv(BASE_DIR / ".env")
|
||||||
|
|
||||||
|
@ -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'),
|
|
||||||
),
|
|
||||||
]
|
|
@ -15,8 +15,7 @@ class Project(models.Model):
|
|||||||
parent = models.ForeignKey(
|
parent = models.ForeignKey(
|
||||||
Parent,
|
Parent,
|
||||||
on_delete=models.CASCADE,
|
on_delete=models.CASCADE,
|
||||||
null=True,
|
null=True
|
||||||
blank=True
|
|
||||||
)
|
)
|
||||||
name = models.CharField(max_length=256)
|
name = models.CharField(max_length=256)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user