increments('id'); $table->string('numclient')->unique(); $table->string('name'); $table->text('options')->nullable(); $table->integer('user_id'); $table->integer('store_id'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('clients'); } }