File size: 1,378 Bytes
d2897cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php

namespace Mautic\Migrations;

use Doctrine\DBAL\Schema\Schema;
use Mautic\CoreBundle\Doctrine\PreUpAssertionMigration;
use Mautic\LeadBundle\Field\Helper\IndexHelper;

/**
 * Auto-generated Migration: Please modify to your needs!
 */
class Version20190524124819 extends PreUpAssertionMigration
{
    protected function preUpAssertions(): void
    {
        $this->skipAssertion(function (Schema $schema) {
            return $schema->getTable("{$this->prefix}lead_fields")->hasColumn('is_index');
        }, sprintf('Schema includes this migration'));
    }

    public function up(Schema $schema): void
    {
        $this->addSql("
            ALTER TABLE {$this->prefix}lead_fields
	        ADD `is_index` TINYINT(1) DEFAULT 0 NOT NULL,
	        ADD `char_length_limit` INT(3) NULL;
        ");

        $this->addSql("
            UPDATE {$this->prefix}lead_fields
	        SET `char_length_limit` = 255 
	        WHERE `type` IN ('text', 'select', 'multiselect', 'phone', 'url', 'email')
	        AND `char_length_limit` IS NULL;
        ");

        $indexHelper    = $this->container->get(IndexHelper::class);
        $indexedColumns = implode("', '", $indexHelper->getIndexedColumnNames());

        $this->addSql("
            UPDATE {$this->prefix}lead_fields
	        SET `is_index` = TRUE 
	        WHERE `alias` IN ('{$indexedColumns}');
        ");
    }
}