feat(fontend,backend): Add createdBy and lastModifiedBy fields

This commit is contained in:
2025-04-19 09:04:52 +02:00
parent 9c1cefd4ed
commit 4e7a962a06
6 changed files with 41 additions and 10 deletions

View File

@@ -1,10 +1,12 @@
create table application_form
(
is_template boolean not null,
created_at timestamp(6) not null,
modified_at timestamp(6) not null,
id uuid not null,
name varchar(255) not null,
is_template boolean not null,
created_at timestamp(6) not null,
modified_at timestamp(6) not null,
id uuid not null,
created_by varchar(255) not null,
last_modified_by varchar(255) not null,
name varchar(255) not null,
primary key (id)
);