您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
326B

  1. <?php
  2. use yii\db\Migration;
  3. class m181107_104051_add_champs_commande_deleted extends Migration
  4. {
  5. public function up()
  6. {
  7. $this->addColumn('commande', 'date_delete', Schema::TYPE_DATETIME.' DEFAULT NULL') ;
  8. }
  9. public function down()
  10. {
  11. $this->dropColumn('commande', 'date_delete') ;
  12. }
  13. }