Files
2026-07-05 09:42:52 +02:00

11 lines
347 B
SQL

-- Your SQL goes here
CREATE TABLE IF NOT EXISTS actions
(
id UUID PRIMARY KEY NOT NULL UNIQUE DEFAULT gen_random_uuid(),
name TEXT NOT NULL,
source TEXT NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT now(),
updated_at TIMESTAMP NOT NULL DEFAULT now()
);