m240807_184343_arreglo_fin_movilizacion.php 520 B

1234567891011121314151617181920212223
  1. <?php
  2. use yii\db\Migration;
  3. /**
  4. * Class m240807_184343_arreglo_fin_movilizacion
  5. */
  6. class m240807_184343_arreglo_fin_movilizacion extends Migration {
  7. /**
  8. * {@inheritdoc}
  9. */
  10. public function safeUp() {
  11. $this->execute('ALTER TABLE "FinMovilizacion" ALTER COLUMN "idSagarhpa" TYPE integer[] USING ARRAY["idSagarhpa"]');
  12. }
  13. /**
  14. * {@inheritdoc}
  15. */
  16. public function safeDown() {
  17. $this->execute('ALTER TABLE "FinMovilizacion" ALTER COLUMN "idSagarhpa" TYPE integer USING "idSagarhpa"[1]');
  18. }
  19. }