bigIncrements('id'); $table->string('name')->index(); $table->string('code')->unique(); $table->string('property')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('depositories'); } }