increments('id'); $table->unsignedInteger('user_id')->comment('用户id'); $table->longText('content')->comment('文本内容'); $table->string('lat',20)->comment('纬度'); $table->string('lng',20)->comment('经度'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('map_message'); } }