db-update-2020-10-20.sql 237 Bytes
use database;

-- Ajout du champ materiels.will_stay (boolean) : pour indiquer que ce materiel restera au labo
ALTER TABLE materiels  ADD will_stay BOOLEAN NOT NULL DEFAULT TRUE COMMENT 'ce materiel restera au labo ?'  AFTER designation;