mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
11 lines
228 B
PHP
11 lines
228 B
PHP
<?php
|
|
|
|
// This is executed inside DatabaseMigrationService class/context
|
|
|
|
// This is now a built-in plugin
|
|
$filePath = GROCY_DATAPATH . '/plugins/DemoBarcodeLookupPlugin.php';
|
|
if (file_exists($filePath))
|
|
{
|
|
unlink($filePath);
|
|
}
|