Initial commit

This commit is contained in:
wangxuming
2026-07-12 15:53:24 +08:00
commit 68d61700d5
252 changed files with 23291 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
UPDATE queue_tickets AS ticket
SET display_number = project.ticket_prefix || lpad(ticket.ticket_number::text, 4, '0')
FROM projects AS project
WHERE project.id = ticket.project_id;