feat: string-unpack api
This commit is contained in:
10
string-unpack/internal/db/schema.sql
Normal file
10
string-unpack/internal/db/schema.sql
Normal 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()
|
||||
)
|
||||
;
|
Reference in New Issue
Block a user