increments('id'); $table->string('matricule'); $table->string('nom'); $table->string('information')->nullable(); $table->text('options')->nullable(); $table->text('composition')->nullable(); $table->integer('user_id'); $table->integer('categorie_id'); $table->integer('store_id'); $table->text("image_file")->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('articles'); } }