mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-09-01 16:26:19 +02:00
Properly mark the tinyint column with a comment, so that migrations can properly detect that no changes are needed
This commit is contained in:
parent
aaf6c37871
commit
342ed382e3
5 changed files with 83 additions and 1 deletions
31
migrations/Version20230408220140.php
Normal file
31
migrations/Version20230408220140.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace DoctrineMigrations;
|
||||
|
||||
use Doctrine\DBAL\Schema\Schema;
|
||||
use Doctrine\Migrations\AbstractMigration;
|
||||
|
||||
/**
|
||||
* Auto-generated Migration: Please modify to your needs!
|
||||
*/
|
||||
final class Version20230408220140 extends AbstractMigration
|
||||
{
|
||||
public function getDescription(): string
|
||||
{
|
||||
return '';
|
||||
}
|
||||
|
||||
public function up(Schema $schema): void
|
||||
{
|
||||
// this up() migration is auto-generated, please modify it to your needs
|
||||
|
||||
}
|
||||
|
||||
public function down(Schema $schema): void
|
||||
{
|
||||
// this down() migration is auto-generated, please modify it to your needs
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue