6c891d6fad
- Collapse orientation to landscape/portrait (ribbon left = portrait standard) - Add OrientationPicker component and wire settings sheet in HomeView - Add password confirmation field to registration form (RepeatedType) - Build frontend SPA to public/build/ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
29 lines
892 B
PHP
29 lines
892 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DoctrineMigrations;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Doctrine\Migrations\AbstractMigration;
|
|
|
|
final class Version20260504000000 extends AbstractMigration
|
|
{
|
|
public function getDescription(): string
|
|
{
|
|
return 'Split portrait orientation into portrait_left / portrait_right; migrate existing rows to portrait_left';
|
|
}
|
|
|
|
public function up(Schema $schema): void
|
|
{
|
|
// Migrate any pre-existing 'portrait' rows to 'portrait_left'.
|
|
// (Ribbon at bottom in landscape → ribbon on left when right edge faces up.)
|
|
$this->addSql("UPDATE device SET orientation = 'portrait_left' WHERE orientation = 'portrait'");
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
$this->addSql("UPDATE device SET orientation = 'portrait' WHERE orientation IN ('portrait_left', 'portrait_right')");
|
|
}
|
|
}
|