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.

18 lines
501B

  1. <?php
  2. use yii\db\Migration;
  3. use yii\db\mysql\Schema;
  4. class m190222_090304_ajout_champs_options_credit extends Migration {
  5. public function up() {
  6. $this->addColumn('producer', 'credit_limit', Schema::TYPE_FLOAT) ;
  7. $this->addColumn('producer', 'use_credit_checked_default', Schema::TYPE_BOOLEAN.' DEFAULT 1') ;
  8. }
  9. public function down() {
  10. $this->dropColumn('producer', 'credit_limit') ;
  11. $this->dropColumn('producer', 'use_credit_checked_default') ;
  12. }
  13. }