6 lines
82 B
MySQL
6 lines
82 B
MySQL
|
create type public.audit_kind as enum
|
||
|
( 'modify'
|
||
|
, 'delete'
|
||
|
, 'create'
|
||
|
);
|