Kaynağa Gözat

Ajout d'un champs date_delete aux commandes pour indiquer si la commande a été supprimée, et quand.

refactoring
keun 6 yıl önce
ebeveyn
işleme
2b39306657
1 değiştirilmiş dosya ile 16 ekleme ve 0 silme
  1. +16
    -0
      console/migrations/m181107_104051_add_champs_commande_deleted.php

+ 16
- 0
console/migrations/m181107_104051_add_champs_commande_deleted.php Dosyayı Görüntüle

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

use yii\db\Migration;

class m181107_104051_add_champs_commande_deleted extends Migration
{
public function up()
{
$this->addColumn('commande', 'date_delete', Schema::TYPE_DATETIME.' DEFAULT NULL') ;
}

public function down()
{
$this->dropColumn('commande', 'date_delete') ;
}
}

Yükleniyor…
İptal
Kaydet