increments('id'); $table->string('name', 50)->nullable(); $table->text('slug')->nullable(); $table->json('image')->nullable(); $table->text('size')->nullable(); $table->float('price')->nullable(); $table->integer('status')->nullable(); $table->integer('current_user')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('products'); } }