createTable('ats_collection', [ 'id' => $this->primaryKey(), 'user_id'=>$this->integer(11)->notNull()->comment('用户id'), 'goods_id'=>$this->integer(11)->notNull()->comment('商品id'), 'updated_at'=>$this->integer(11)->defaultValue(null)->comment('更新时间'), 'created_at'=>$this->integer(11)->defaultValue(null)->comment('创建时间'), ],$tableOptions); } /** * {@inheritdoc} */ public function down() { $this->dropTable('ats_collection'); return true; } }