addColumn('Condicionante', 'idNivel', $this->string(36)); $this->addForeignKey( 'fk_Condicionante_Nivel', 'Condicionante', 'idNivel', 'Nivel', 'id', ); } /** * {@inheritdoc} */ public function safeDown() { $this->dropForeignKey('fk_Condicionante_Nivel', 'Condicionante'); $this->dropColumn('Condicionante', 'idNivel'); } }