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

9 lines
246 B
SQL

CREATE TABLE hooklog (
id INTEGER NOT NULL PRIMARY KEY,
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)
);