Varakh
3b0603ae17
Some checks failed
/ build (push) Has been cancelled
- 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 Reviewed-on: #52 Co-authored-by: Varakh <varakh@varakh.de> Co-committed-by: Varakh <varakh@varakh.de>
13 lines
365 B
SQL
13 lines
365 B
SQL
create table if not exists events
|
|
(
|
|
id uuid not null
|
|
constraint uni_events_id primary key,
|
|
name text not null,
|
|
state text not null,
|
|
payload jsonb,
|
|
created_at timestamp with time zone not null,
|
|
updated_at timestamp with time zone not null
|
|
);
|
|
|
|
|
|
commit;
|