Skip to content

Commit

Permalink
Merge pull request #6017 from pmattmann/feature/fix-checklist-migration
Browse files Browse the repository at this point in the history
fix Checklist.IsPrototype migration
  • Loading branch information
usu authored Sep 28, 2024
2 parents 6fae7ea + e74629b commit ebd4aa4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/migrations/schema/Version20240912183023.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function getDescription(): string {

public function up(Schema $schema): void {
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE checklist ADD isPrototype BOOLEAN NOT NULL');
$this->addSql('ALTER TABLE checklist ADD isPrototype BOOLEAN NOT NULL DEFAULT FALSE');
$this->addSql('ALTER TABLE checklist ALTER campid DROP NOT NULL');
}

Expand Down
2 changes: 1 addition & 1 deletion api/src/Entity/Checklist.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class Checklist extends BaseEntity implements BelongsToCampInterface, CopyFromPr
#[Assert\DisableAutoMapping]
#[ApiProperty(example: true, writable: true)]
#[Groups(['read', 'create'])]
#[ORM\Column(type: 'boolean')]
#[ORM\Column(type: 'boolean', options: ['default' => false])]
public bool $isPrototype = false;

public function __construct() {
Expand Down

0 comments on commit ebd4aa4

Please sign in to comment.