-- Foro multiidioma: nombre/descripción en inglés (opcional). Si están vacíos, se -- cae a la versión en español. El texto original es ES. ALTER TABLE forum_categories ADD COLUMN name_en VARCHAR(255) NULL AFTER name; ALTER TABLE forums ADD COLUMN name_en VARCHAR(45) NULL AFTER name, ADD COLUMN description_en TEXT NULL AFTER description; -- Traducción de las categorías/foros existentes. UPDATE forum_categories SET name_en = 'Community' WHERE name = 'Comunidad'; UPDATE forums SET name_en = 'Announcements', description_en = 'Official server news and announcements.' WHERE name = 'Anuncios'; UPDATE forums SET name_en = 'General Discussion', description_en = 'Talk about everything server-related with the community.' WHERE name = 'Discusión general';