Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix Checklist.IsPrototype migration #6017

Merged
merged 1 commit into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading