addColumn('Dependencia', 'estatus', $this->boolean()); $this->addColumn('Evento', 'redSocial', $this->string(100)); $this->alterColumn('Evento', 'nombre', $this->string(500)); } /** * {@inheritdoc} */ public function safeDown() { $this->alterColumn('Evento', 'nombre', $this->string(255)); $this->dropColumn('Evento', 'redSocial'); $this->dropColumn('Dependencia', 'estatus'); } }