feat(frontend,backend): Add application form name

This commit is contained in:
2025-03-09 09:11:35 +01:00
parent 46a14b4e9c
commit 66dabc329d
6 changed files with 42 additions and 8 deletions

View File

@@ -4,6 +4,7 @@ create table application_form
created_at timestamp(6) not null,
modified_at timestamp(6) not null,
id uuid not null,
name varchar(255) not null,
primary key (id)
);