increments('id'); $table->unsignedInteger('work_point_id')->nullable(); $table->string('remark', 200)->nullable(); $table->unsignedInteger('money')->nullable()->comment('单位:分'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('orders'); } }