diff --git a/migrations/2022-10-11-151321_create_history/up.sql b/migrations/2022-10-11-151321_create_history/up.sql index 0c2204b..3ac0996 100644 --- a/migrations/2022-10-11-151321_create_history/up.sql +++ b/migrations/2022-10-11-151321_create_history/up.sql @@ -1,8 +1,8 @@ CREATE TABLE hooklog ( id INTEGER NOT NULL PRIMARY KEY, - repo_url VARCHAR(300) NOT NULL, + repo_url TEXT NOT NULL, command_with_args TEXT NOT NULL, - current_dir VARCHAR(300) NOT NULL, + current_dir TEXT NOT NULL, stdout TEXT NOT NULL, stderr TEXT NOT NULL, status_code INTEGER CHECK (status_code >= 0)