bigIncrements('id'); $table->string('name'); $table->tinyInteger('type')->default(0)->comment('类型'); $table->string('bike_no', 30)->comment('车的编号'); $table->double('latitude', 10, 7)->nullable()->comment('维度'); $table->double('longitude', 10, 7)->nullable()->comment('经度'); $table->bigInteger('user_id')->default(0)->comment('用户id'); $table->tinyInteger('status')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('user_bike_operates'); } }