migrations/Version20231025070948.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20231025070948 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         
  19.         $this->addSql("CREATE TABLE resources (
  20.             id INT AUTO_INCREMENT NOT NULL,
  21.             author_id INT NOT NULL,
  22.             type INT NOT NULL,
  23.             business_name VARCHAR(255) NOT NULL,
  24.             categories VARCHAR(255) NOT NULL,
  25.             is_residential VARCHAR(255) DEFAULT NULL,
  26.             contact_person VARCHAR(255) DEFAULT NULL,
  27.             phone VARCHAR(255) DEFAULT NULL,
  28.             city INT DEFAULT NULL,
  29.             state INT NULL,
  30.             country VARCHAR(255) DEFAULT NULL,
  31.             zipcode VARCHAR(255) DEFAULT NULL,
  32.             email VARCHAR(255) DEFAULT NULL,
  33.             website VARCHAR(255) DEFAULT NULL,
  34.             why_like_them LONGTEXT DEFAULT NULL,
  35.             is_published TINYINT(1) NOT NULL COMMENT '1=>residential, 2=>commercial',
  36.             reason_non_published LONGTEXT DEFAULT NULL,
  37.             overall_ratings NUMERIC(10, 2) NOT NULL,
  38.             created_at DATETIME NOT NULL COMMENT '(DC2Type:datetime_immutable)',
  39.             updated_at DATETIME DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
  40.             deleted_at DATETIME DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
  41.             PRIMARY KEY(id)
  42.         ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB");
  43.         
  44.     }
  45.     public function down(Schema $schema): void
  46.     {
  47.         // this down() migration is auto-generated, please modify it to your needs
  48.         $this->addSql('DROP TABLE builders_details');
  49.         
  50.     }
  51. }