chore: stage all in-progress work before repo split
CI / test (push) Has been cancelled

Web app: new entities (Image, RenderedAsset, SharedImage, Token,
DeviceImageHistory), enums, repositories, controllers, message handlers,
migrations, tests, frontend upload/library/sticker UI, Vue components.

Firmware: EPD background screen binaries + gen scripts, setup_bg header.

Infra: ddev config, test bundle, gitignore coverage dir.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-06 12:11:31 -04:00
parent dd0970ed7c
commit 4002ff9fbf
156 changed files with 27333 additions and 92 deletions
+30
View File
@@ -0,0 +1,30 @@
<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20260506020000 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add current_image_id FK to device';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE device ADD current_image_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE device ADD CONSTRAINT fk_device_current_image FOREIGN KEY (current_image_id) REFERENCES image (id) ON DELETE SET NULL NOT DEFERRABLE INITIALLY IMMEDIATE');
$this->addSql('CREATE INDEX idx_device_current_image ON device (current_image_id)');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE device DROP CONSTRAINT fk_device_current_image');
$this->addSql('DROP INDEX idx_device_current_image');
$this->addSql('ALTER TABLE device DROP COLUMN current_image_id');
}
}