Added git workflow + fixing some issues

This commit is contained in:
Renn F
2026-04-19 16:13:42 +02:00
parent f474603897
commit 0023c25d60
67 changed files with 5266 additions and 1914 deletions
+2 -3
View File
@@ -259,7 +259,6 @@ def upgrade() -> None:
nullable=False,
server_default="code",
),
sa.Column("requires_git", sa.Boolean(), nullable=False, server_default="true"),
sa.Column(
"nature",
sa.Enum("technical", "non_technical", name="tasknature"),
@@ -269,8 +268,8 @@ def upgrade() -> None:
sa.Column(
"project_id",
postgresql.UUID(as_uuid=True),
sa.ForeignKey("projects.id", ondelete="SET NULL"),
nullable=True,
sa.ForeignKey("projects.id", ondelete="RESTRICT"),
nullable=False,
index=True,
),
sa.Column("branch_name", sa.String(500), nullable=True),