public function up(): void
{
Schema::create('job_posting_files', function (Blueprint $table) {
$table->id();
$table->string('original_name');
$table->string('stored_name');
$table->foreignId('job_posting_id')->nullable()->constrained()->cascadeOnDelete();
$table->timestamps();
});
}
public function up(): void
{
Schema::create('job_posting_files', function (Blueprint $table) {
$table->id();
$table->string('original_name');
$table->string('stored_name');
$table->foreignId('job_posting_id')->nullable()->constrained()->cascadeOnDelete();
$table->timestamps();
});
}