id(); $table->string('name'); $table->integer('order_id')->unsigned()->comment("订单id")->unique(); $table->string('avatar')->nullable(); $table->text('intro')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('groups'); } };