m240719_013111_columna_tipo_vehiculo.php 422 B

123456789101112131415161718192021222324252627
  1. <?php
  2. use yii\db\Migration;
  3. /**
  4. * Class m240719_013111_columna_tipo_vehiculo
  5. */
  6. class m240719_013111_columna_tipo_vehiculo extends Migration
  7. {
  8. /**
  9. * {@inheritdoc}
  10. */
  11. public function safeUp()
  12. {
  13. $this->addColumn("Vehiculo", "tipo", $this->string(100));
  14. }
  15. /**
  16. * {@inheritdoc}
  17. */
  18. public function safeDown()
  19. {
  20. $this->dropColumn("Vehiculo", "tipo");
  21. }
  22. }