Files
grocy/migrations/0031.php
T

31 lines
841 B
PHP
Raw Normal View History

<?php
// This is executed inside DatabaseMigrationService class/context
$localizationService = $this->getLocalizationService();
$db = $this->getDatabaseService()->GetDbConnection();
if ($db->quantity_units()->count() === 0)
{
// Create 2 default quantity units
2021-07-03 17:46:47 +02:00
$newRow = $db->quantity_units()->createRow([
'name' => $localizationService->__n(1, 'Piece', 'Pieces'),
'name_plural' => $localizationService->__n(2, 'Piece', 'Pieces')
2021-07-03 17:46:47 +02:00
]);
$newRow->save();
2021-07-03 17:46:47 +02:00
$newRow = $db->quantity_units()->createRow([
'name' => $localizationService->__n(1, 'Pack', 'Packs'),
'name_plural' => $localizationService->__n(2, 'Pack', 'Packs')
2021-07-03 17:46:47 +02:00
]);
$newRow->save();
}
if ($db->locations()->count() === 0)
{
// Create a default location
2021-07-03 17:46:47 +02:00
$newRow = $db->locations()->createRow([
'name' => $localizationService->__t('Fridge')
2021-07-03 17:46:47 +02:00
]);
$newRow->save();
}