id(); $table->string('title'); $table->text('title_description')->nullable(); $table->string('salary_per_month')->nullable(); $table->json('bullets')->nullable(); $table->string('location'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('careers'); } };