Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

18 lines
314B

  1. <?php
  2. use yii\db\Migration;
  3. use yii\db\Schema;
  4. class m170201_074937_champs_code_point_vente extends Migration
  5. {
  6. public function up()
  7. {
  8. $this->addColumn('point_vente', 'code', Schema::TYPE_STRING) ;
  9. }
  10. public function down()
  11. {
  12. $this->dropColumn('point_vente','code') ;
  13. }
  14. }