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.

22 lines
608B

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