Backend Draft

This commit is contained in:
__init__
2026-02-23 20:31:53 +05:30
commit eec700af51
127 changed files with 2356 additions and 0 deletions

View File

@@ -0,0 +1,160 @@
# Generated by Django 4.2.28 on 2026-02-20 19:38
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
initial = True
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("tenants", "0001_initial"),
]
operations = [
migrations.CreateModel(
name="Project",
fields=[
(
"id",
models.BigAutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("name", models.CharField(max_length=255)),
("description", models.TextField(blank=True)),
(
"status",
models.CharField(
choices=[
("active", "Active"),
("completed", "Completed"),
("archived", "Archived"),
],
default="active",
max_length=20,
),
),
("created_at", models.DateTimeField(auto_now_add=True)),
("updated_at", models.DateTimeField(auto_now=True)),
(
"created_by",
models.ForeignKey(
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="created_projects",
to=settings.AUTH_USER_MODEL,
),
),
(
"tenant",
models.ForeignKey(
on_delete=django.db.models.deletion.CASCADE,
related_name="projects",
to="tenants.tenant",
),
),
],
),
migrations.CreateModel(
name="Task",
fields=[
(
"id",
models.BigAutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("title", models.CharField(max_length=255)),
("description", models.TextField(blank=True)),
(
"status",
models.CharField(
choices=[
("todo", "To Do"),
("in_progress", "In Progress"),
("review", "Under Review"),
("done", "Done"),
],
default="todo",
max_length=20,
),
),
(
"priority",
models.CharField(
choices=[
("low", "Low"),
("medium", "Medium"),
("high", "High"),
("critical", "Critical"),
],
default="medium",
max_length=20,
),
),
("due_date", models.DateField(blank=True, null=True)),
("created_at", models.DateTimeField(auto_now_add=True)),
("updated_at", models.DateTimeField(auto_now=True)),
(
"assigned_to",
models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="assigned_tasks",
to=settings.AUTH_USER_MODEL,
),
),
(
"project",
models.ForeignKey(
on_delete=django.db.models.deletion.CASCADE,
related_name="tasks",
to="projects.project",
),
),
(
"tenant",
models.ForeignKey(
on_delete=django.db.models.deletion.CASCADE,
related_name="tasks",
to="tenants.tenant",
),
),
],
options={
"indexes": [
models.Index(
fields=["tenant", "project"],
name="projects_ta_tenant__2d974e_idx",
),
models.Index(
fields=["tenant", "assigned_to"],
name="projects_ta_tenant__eee8a8_idx",
),
],
},
),
migrations.AddIndex(
model_name="project",
index=models.Index(
fields=["tenant", "created_by"], name="projects_pr_tenant__12414f_idx"
),
),
migrations.AddIndex(
model_name="project",
index=models.Index(
fields=["tenant", "status"], name="projects_pr_tenant__3f3849_idx"
),
),
]

View File

@@ -0,0 +1,21 @@
# Generated by Django 4.2.28 on 2026-02-20 20:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('projects', '0001_initial'),
]
operations = [
migrations.AddIndex(
model_name='project',
index=models.Index(fields=['tenant', '-created_at'], name='projects_pr_tenant__5d8ad4_idx'),
),
migrations.AddIndex(
model_name='task',
index=models.Index(fields=['tenant', '-created_at'], name='projects_ta_tenant__a717eb_idx'),
),
]

View File