Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function up(Schema $schema) |
||
14 | { |
||
15 | // this up() migration is auto-generated, please modify it to your needs |
||
16 | $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql', 'Migration can only be executed safely on \'mysql\'.'); |
||
17 | |||
18 | $this->addSql('ALTER TABLE identity ADD common_name VARCHAR(255) NOT NULL'); |
||
19 | $this->addSql('CREATE FULLTEXT INDEX idxft_identity_commonname ON identity (common_name)'); |
||
20 | } |
||
21 | |||
31 |