I need to add some records to the TABLE `configuration`, ad since the 'configuration_id' field is auto_increment, I've written a sql patch like:
INSERT INTO configuration (configuration_id,configuration_title, configuration_key,
configuration_value, configuration_description, configuration_group_id,
sort_order, last_modified, date_added, use_function, set_function)
VALUES ('',
'Visualizza Nome Box Options 1',
'PRODUCT_ALL_LIST_BOX_OPTIONS_1',
'2302',
'Vuoi visualizzare il Nome del Box Options 1 ?<br /><br />0= off<br />1° carattere Sinistra o Destra<br />2° e 3° carattere Ordine Elencazione<br />4° carattere numero di interruzioni dopo<br />',
'23',
'6',
NULL,
now(),
NULL,
NULL);
The patch is accepted and works well (I see the new option in admin->configure->all listing).
The strange thing is that if I export the database with phpMyAdmin I don't see the new record and the configuration_key PRODUCT_ALL_LIST_BOX_OPTIONS_1 is nowhere present.
Note that I've also updated the TABLE `product_type_layout`, and the new record is present, and so it seems to happen only for the TABLE 'configuration', and I'd like to see the new records!!!
What can I do? - Thanks - Giovanni







Bookmarks