1
0

implements optimistic locking for PackageEntity

This commit is contained in:
Michael Hoennig
2022-08-20 12:29:14 +02:00
parent 5ea8069608
commit a04929453c
4 changed files with 72 additions and 19 deletions

View File

@ -7,6 +7,7 @@
create table if not exists package
(
uuid uuid unique references RbacObject (uuid),
version int not null default 0,
customerUuid uuid references customer (uuid),
name varchar(5),
description varchar(96)