1
0
Fork 0
mirror of https://codeberg.org/Mo8it/git-webhook-client synced 2024-10-18 07:22:39 +00:00
git-webhook-client/migrations/2022-10-11-151321_create_history/up.sql
2022-10-12 16:22:13 +02:00

10 lines
288 B
SQL

CREATE TABLE hooklog (
id INTEGER NOT NULL PRIMARY KEY,
datetime TEXT NOT NULL,
repo_url TEXT NOT NULL,
command_with_args TEXT NOT NULL,
current_dir TEXT NOT NULL,
stdout TEXT NOT NULL,
stderr TEXT NOT NULL,
status_code INTEGER CHECK (status_code >= 0)
);