bigIncrements('id'); $table->unsignedBigInteger('user_id')->index(); $table->string('title')->nullable(); $table->text('body')->nullable(); $table->decimal('price', 15, 2)->nullable(); $table->boolean('is_paid')->default(false); $table->string('slug')->index(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('images'); } }