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.

m201218_071628_add_option_export_csv.php 410B

12345678910111213141516171819
  1. <?php
  2. use yii\db\Migration;
  3. use yii\db\Schema;
  4. class m201218_071628_add_option_export_csv extends Migration
  5. {
  6. public function safeUp()
  7. {
  8. $this->addColumn('producer', 'option_csv_export_all_products', Schema::TYPE_BOOLEAN.' DEFAULT 0');
  9. }
  10. public function safeDown()
  11. {
  12. $this->dropColumn('producer', 'option_csv_export_all_products');
  13. return false;
  14. }
  15. }