You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

m181107_104051_add_champs_commande_deleted.php 326B

12345678910111213141516
  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. }