This commit is contained in:
parent
054483cfdd
commit
3905bb58cb
|
@ -50,5 +50,6 @@ BEGIN
|
|||
END IF;
|
||||
|
||||
|
||||
|
||||
END$$
|
||||
DELIMITER ;
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
-- Place your SQL code here
|
||||
UPDATE vn.travel
|
||||
SET availabled = landed
|
||||
WHERE availabled IS NULL;
|
|
@ -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';
|
Loading…
Reference in New Issue