increments('id'); $table->integer('user_id')->comment('用户id'); $table->string('app_id', 255)->comment('APP ID(app_info主键id)'); $table->nullableTimestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('user_app'); } }