id(); $table->integer("building_id")->nullable(); $table->integer("project_id")->nullable(); $table->string("name")->nullable(); $table->string("myindex")->default(0); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('area'); } }