feat(cities): update site name for نوبت 724 to remove redundancy

This commit is contained in:
hamed
2026-07-03 12:30:03 +03:30
parent 9cabdb33e8
commit 426cc500cc
2 changed files with 32 additions and 1 deletions
+1 -1
View File
@@ -675,7 +675,7 @@
"id": 600,
"uuid": "7bfbad3c-646b-11f1-84d7-f26ca1845824",
"name": "نوبت 724",
"site_name": "نوبت 724 نوبت",
"site_name": "نوبت 724",
"status": 1,
"weight": 0,
"province_id": null,
+31
View 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 Version20260703085828 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
$this->addSql('ALTER TABLE users CHANGE national_code_verified national_code_verified TINYINT NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE users CHANGE national_code_verified national_code_verified TINYINT DEFAULT 0 NOT NULL');
}
}