php code style + upd CHANGELOG

This commit is contained in:
nobohan 2022-05-27 09:39:36 +02:00
parent dbdf435721
commit 0a4ef3ad22
3 changed files with 18 additions and 11 deletions

View File

@ -11,6 +11,7 @@ and this project adheres to
## Unreleased ## Unreleased
<!-- write down unreleased development here --> <!-- write down unreleased development here -->
* [storedobject] add title field on StoredObject entity + use it in activity documents (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/604)
* [main] add a "read more..." on comment embeddable when overflown (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/604) * [main] add a "read more..." on comment embeddable when overflown (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/604)
* [admin] refactorisation of the admin section: reorganisation of the menu, translations, form types, new entities (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/592) * [admin] refactorisation of the admin section: reorganisation of the menu, translations, form types, new entities (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/592)

View File

@ -15,20 +15,20 @@ use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration; use Doctrine\Migrations\AbstractMigration;
/** /**
* Add title on storedObject * Add title on storedObject.
*/ */
final class Version20220525141646 extends AbstractMigration final class Version20220525141646 extends AbstractMigration
{ {
public function getDescription(): string
{
return 'Add title on storedObject';
}
public function down(Schema $schema): void public function down(Schema $schema): void
{ {
$this->addSql('ALTER TABLE chill_doc.stored_object DROP title'); $this->addSql('ALTER TABLE chill_doc.stored_object DROP title');
} }
public function getDescription(): string
{
return 'Add title on storedObject';
}
public function up(Schema $schema): void public function up(Schema $schema): void
{ {
$this->addSql('ALTER TABLE chill_doc.stored_object ADD title TEXT NOT NULL DEFAULT \'\' '); $this->addSql('ALTER TABLE chill_doc.stored_object ADD title TEXT NOT NULL DEFAULT \'\' ');

View File

@ -1,5 +1,12 @@
<?php <?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); declare(strict_types=1);
namespace Chill\Migrations\Main; namespace Chill\Migrations\Main;
@ -9,6 +16,10 @@ use Doctrine\Migrations\AbstractMigration;
final class Version20220513151853 extends AbstractMigration final class Version20220513151853 extends AbstractMigration
{ {
public function down(Schema $schema): void
{
}
public function getDescription(): string public function getDescription(): string
{ {
return 'set default on attributes'; return 'set default on attributes';
@ -18,9 +29,4 @@ final class Version20220513151853 extends AbstractMigration
{ {
$this->addSql('update users set attributes = \'[]\'::json where attributes IS NULL'); $this->addSql('update users set attributes = \'[]\'::json where attributes IS NULL');
} }
public function down(Schema $schema): void
{
}
} }