mirror of
https://github.com/grocy/grocy.git
synced 2025-09-16 17:56:51 +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);
|
||
|
}
|