Merge branch 'master' into divers

This commit is contained in:
2021-12-14 18:32:12 +01:00
13 changed files with 1045 additions and 384 deletions

View File

@@ -47,6 +47,11 @@ class Civility
*/
private array $name = [];
/**
* @ORM\Column(type="float", name="ordering", nullable=true, options={"default": 0.0})
*/
private float $order = 0;
public function getAbbreviation(): array
{
return $this->abbreviation;
@@ -67,6 +72,11 @@ class Civility
return $this->name;
}
public function getOrder(): ?float
{
return $this->order;
}
/**
* @return Civility
*/
@@ -90,4 +100,11 @@ class Civility
return $this;
}
public function setOrder(float $order): self
{
$this->order = $order;
return $this;
}
}

View File

@@ -0,0 +1,36 @@
<?php
/**
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Chill\Migrations\Main;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Add order to civility.
*/
final class Version20211213112628 extends AbstractMigration
{
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE chill_main_civility DROP "ordering"');
}
public function getDescription(): string
{
return 'Add order to civility';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE chill_main_civility ADD "ordering" FLOAT DEFAULT 0.0');
}
}