Skip to content

Commit

Permalink
Prevent null on template git_branch.
Browse files Browse the repository at this point in the history
Fixes: sql: Scan error on column index 20, name \"git_branch\": converting NULL to string is unsupported
  • Loading branch information
Omicron7 committed Sep 17, 2024
1 parent df92175 commit 51b9643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/sql/migrations/v2.10.23.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
alter table `task` add `git_branch` varchar(255);

alter table `project__template` add `git_branch` varchar(255);
alter table `project__template` add `git_branch` varchar(255) not null default '';

0 comments on commit 51b9643

Please sign in to comment.