Explorar el Código

Migration : set 'status' à 'tmp-order' pour les Order existantes

L'objectif est d'éviter le bug lié au fait que order.status est un champs obligatoire.
dev
Guillaume Bourgeois hace 4 años
padre
commit
4d2ad0d61a
Se han modificado 1 ficheros con 19 adiciones y 0 borrados
  1. +19
    -0
      console/migrations/m200117_161844_order_existantes_set_status.php

+ 19
- 0
console/migrations/m200117_161844_order_existantes_set_status.php Ver fichero

@@ -0,0 +1,19 @@
<?php

use yii\db\Migration;

class m200117_161844_order_existantes_set_status extends Migration
{
public function safeUp()
{
Order::updateAll([
'status' => 'tmp-order'
]) ;
}

public function safeDown()
{

}

}

Cargando…
Cancelar
Guardar