mirror of
https://codeberg.org/Mo8it/git-webhook-client
synced 2024-11-21 11:06:32 +00:00
Use TEXT instead of VARCHAR
This commit is contained in:
parent
8347d0a391
commit
5b057d7cfa
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue