increments('id'); $table->integer('company_id')->index()->comment('企业ID'); $table->string('contact')->comment('联系人'); $table->bigInteger('telephone')->comment('手机号')->nullable(); $table->string('landline_tel')->comment('固话'); $table->string('email')->comment('邮箱'); $table->string('qq')->comment('QQ')->nullable(); $table->string('address')->comment('联系地址'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('company_contacts'); } }