id(); $table->unsignedBigInteger('user_id')->index(); $table->string('description')->nullable(); $table->json('pictures')->nullable(); $table->boolean('status')->default(1); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('dynamics'); } }