increments('id'); $table->string('cin'); $table->string('nom'); $table->string('prenom'); $table->string('password'); $table->string('tel'); $table->boolean('etat'); $table->string('type_fonction'); $table->string('password2'); $table->integer('store_id'); $table->integer('user_id'); $table->decimal('credit_maximum'); $table->integer('jourVerification'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('sellers'); } }