feat: string-unpack api

This commit is contained in:
2024-05-08 21:25:02 +03:00
parent 0f8d6b39fb
commit 070934d66a
18 changed files with 572 additions and 4 deletions

View File

@ -0,0 +1,10 @@
CREATE EXTENSION IF NOT EXISTS pgcrypto;
CREATE TABLE unpack_history
(
id uuid default gen_random_uuid() primary key,
input text NOT NULL,
result text NOT NULL,
created_at timestamptz DEFAULT NOW()
)
;