Add new columns to producer and product language tables

- Added 'data' column to 'pp_shop_producer_lang' table for additional metadata storage.
- Added 'security_information' column to 'pp_shop_products_langs' table to enhance product security details.
This commit is contained in:
2026-01-04 21:22:40 +01:00
parent 5489d92211
commit 9eecf6b415
14 changed files with 205 additions and 111 deletions

BIN
updates/0.20/ver_0.232.zip Normal file

Binary file not shown.

View File

@@ -0,0 +1,2 @@
ALTER TABLE pp_shop_producer_lang ADD COLUMN data TEXT NULL DEFAULT NULL AFTER meta_title;
ALTER TABLE pp_shop_products_langs ADD COLUMN security_information TEXT NULL DEFAULT NULL AFTER xml_name;