1234567891011121314151617181920212223 |
- <?php
- use yii\db\Migration;
- /**
- * Class m240807_184343_arreglo_fin_movilizacion
- */
- class m240807_184343_arreglo_fin_movilizacion extends Migration {
- /**
- * {@inheritdoc}
- */
- public function safeUp() {
- $this->execute('ALTER TABLE "FinMovilizacion" ALTER COLUMN "idSagarhpa" TYPE integer[] USING ARRAY["idSagarhpa"]');
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown() {
- $this->execute('ALTER TABLE "FinMovilizacion" ALTER COLUMN "idSagarhpa" TYPE integer USING "idSagarhpa"[1]');
- }
- }
|