Just try this mysql query
ALTER TABLE --database--
.wp_categories
ADD COLUMN link_count
BIGINT(20) NOT NULL DEFAULT 0 AFTER category_count
,
ADD COLUMN posts_private
TINYINT(1) NOT NULL DEFAULT 0 AFTER link_count
,
ADD COLUMN links_private
TINYINT(1) NOT NULL DEFAULT 0 AFTER posts_private
;
work for me ??