technical debts (#3438)

* reformat release notes
* deactivate transactions in migrations by default
* fix migration base class
* fix default value
* composer update
This commit is contained in:
Kevin Papst
2022-07-27 00:54:43 +02:00
committed by GitHub
parent 1b8948a086
commit 7238f404f7
9 changed files with 76 additions and 73 deletions

View File

@@ -203,7 +203,7 @@ class Project implements EntityWithMetaFields, EntityWithBudget
*
* @Exporter\Expose(label="label.billable", type="boolean")
*
* @ORM\Column(name="billable", type="boolean", nullable=false)
* @ORM\Column(name="billable", type="boolean", nullable=false, options={"default": true})
* @Assert\NotNull()
*/
private $billable = true;