소스 검색

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

refactoring
keun 6 년 전
부모
커밋
2b39306657
1개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제
  1. +16
    -0
      console/migrations/m181107_104051_add_champs_commande_deleted.php

+ 16
- 0
console/migrations/m181107_104051_add_champs_commande_deleted.php 파일 보기

@@ -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') ;
}
}

Loading…
취소
저장