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