fix(travel): refs #8048 resf#8048
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Pako Natek 2025-03-03 08:16:13 +01:00
parent 054483cfdd
commit 3905bb58cb
3 changed files with 9 additions and 2 deletions

View File

@ -50,5 +50,6 @@ BEGIN
END IF;
END$$
DELIMITER ;

View File

@ -0,0 +1,4 @@
-- Place your SQL code here
UPDATE vn.travel
SET availabled = landed
WHERE availabled IS NULL;

View File

@ -0,0 +1,2 @@
ALTER TABLE vn.travel MODIFY COLUMN availabled datetime NOT NULL
COMMENT 'Indicates the moment in time when the goods become available for picking';