increments('id'); $table->integer('company_id')->comment('企业ID'); $table->integer('uid')->comment('查看用户ID,0表示游客'); $table->tinyInteger('utype')->default('2')->comment('查看用户类型(1:企业用户,2:个人用户,0:游客)'); $table->integer('job_id')->comment('职位ID'); $table->tinyInteger('source')->comment('来源(1pc 2触屏 3移动)'); $table->tinyInteger('apply')->comment('是否申请职位(1:是,0:否)'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('company_statistics'); } }