id(); $table->string('title','40')->comment('简称'); $table->string('name','40')->comment('公司名称'); $table->integer('pid')->default(0)->comment('上级公司ID'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('uc_company_t'); } }