選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
329B

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