addColumn('Obra', 'clave', $this->string()); $this->createIndex( 'id-claveObra-unique', 'Obra', 'clave', true ); } /** * {@inheritdoc} */ public function safeDown() { $this->dropIndex( 'id-claveObra-unique', 'Obra' ); $this->dropColumn('Obra', 'clave'); } /* // Use up()/down() to run migration code without a transaction. public function up() { } public function down() { echo "m240816_231235_obras_clave_unique cannot be reverted.\n"; return false; } */ }