Varakh
570e454a95
All checks were successful
/ build (pull_request) Successful in 5m54s
- only Postgres is supported from now on to reduce maintenance - enables building main upda server application for all platforms - instead of using ORM auto migrate for database schema creation, switch to proper migration framework utilizing flexible steps and plain sql files - library updates
17 lines
577 B
SQL
17 lines
577 B
SQL
create table if not exists actions
|
|
(
|
|
id uuid not null
|
|
constraint uni_actions_id primary key,
|
|
label text not null,
|
|
type text not null,
|
|
match_event text,
|
|
match_application text,
|
|
match_provider text,
|
|
match_host text,
|
|
payload jsonb,
|
|
enabled boolean not null,
|
|
created_at timestamp with time zone not null,
|
|
updated_at timestamp with time zone not null
|
|
);
|
|
|
|
commit;
|