You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ALTER TABLE storage_unit_item ADD COLUMN IF NOT EXISTS type VARCHAR(64);
UPDATE storage_unit_item SET type = item.type FROM item WHERE item.id = storage_unit_item.item_id AND (storage_unit_item.type IS NULL OR storage_unit_item.type = '');