Thanasoft-H2F/gestion/lib/Migration/Version20007Date20220311135612.php
2024-12-16 17:24:37 +03:00

58 lines
1.6 KiB
PHP

<?php
declare(strict_types=1);
namespace OCA\Gestion\Migration;
use Closure;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
/**
* Auto-generated migration step: Please modify to your needs!
*/
class Version20007Date20220311135612 extends SimpleMigrationStep {
/**
* @param IOutput $output
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
* @param array $options
*/
public function preSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
}
/**
* @param IOutput $output
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
* @param array $options
* @return null|ISchemaWrapper
*/
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
$schema = $schemaClosure();
$tableprefix = "gestion_";
$table = $schema->getTable($tableprefix.'produit_devis');
if ($table->hasColumn('quantite')) {
$column = $table->getColumn('quantite');
$column->setOptions(['type' => \Doctrine\DBAL\Types\Type::getType('float'), 'default' => 0]);
}
if ($table->hasColumn('discount')) {
$column = $table->getColumn('discount');
$column->setOptions(['type' => \Doctrine\DBAL\Types\Type::getType('float'), 'default' => 0]);
}
return $schema;
}
/**
* @param IOutput $output
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
* @param array $options
*/
public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
}
}