jreinke / magento-stock-movements

Magento extension to save products stock movements.
http://www.bubblecode.net/en/2012/02/07/magento-save-product-stock-moves/
79 stars 50 forks source link

how does one fully un-install the extension? #25

Closed seansan closed 7 years ago

seansan commented 7 years ago

how does one fully un-install the extension?

sprankhub commented 7 years ago
  1. Remove all extension files:

    rm -r app/code/community/Bubble/StockMovements/
    rm app/etc/modules/Bubble_StockMovements.xml
    rm app/locale/en_US/Bubble_StockMovements.csv
    rm app/locale/fr_FR/Bubble_StockMovements.csv
    rm app/locale/pt_BR/Bubble_StockMovements.csv
  2. Cleanup database:

    DROP TABLE `bubble_stock_movement`;
    DELETE FROM `core_resource` WHERE `code` = 'bubble_stockmovements_setup';
seansan commented 7 years ago

thx! maybe add -rf to avoid confirmations

On Tue, Aug 8, 2017 at 8:43 AM, Simon Sprankel notifications@github.com wrote:

1.

Remove all extension files:

rm -r app/code/community/Bubble/StockMovements/
rm app/etc/modules/Bubble_StockMovements.xml
rm app/locale/en_US/Bubble_StockMovements.csv
rm app/locale/fr_FR/Bubble_StockMovements.csv
rm app/locale/pt_BR/Bubble_StockMovements.csv

2.

Cleanup database:

DROP TABLE `bubble_stock_movement`;
DELETE FROM `core_resource` WHERE `code` = 'bubble_stockmovements_setup';

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/jreinke/magento-stock-movements/issues/25#issuecomment-320865297, or mute the thread https://github.com/notifications/unsubscribe-auth/AAn0a__leNAK20zar5FgRawn3o-q-ScUks5sWAN0gaJpZM4M5Nun .

sprankhub commented 7 years ago

Yeah, you can do that as well. Please close this issue if my answer solves it.

seansan commented 7 years ago

https://github.com/jreinke/magento-stock-movements/pull/27