© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
14 replies
Batuhan

Laravel migrate

When I try to run php artisan migrate, I encounter the error 2024_02_14_184516_create_employees_table [1] 73367 segmentation fault php artisan migrate, and in the code I've written as follows:

public function up(): void
{
    Schema::create('employees', function (Blueprint $table) {
        $table->id();
        $table->foreignId('country_id')->constrained()->cascadeOnDelete();
        $table->foreignId('state_id')->constrained()->cascadeOnDelete();
        $table->foreignId('city_id')->constrained()->cascadeOnDelete();
        $table->foreignId('department_id')->constrained()->cascadeOnDelete();
        $table->string('first_name');
        $table->string('last_name');
        $table->string('address');
        $table->string('zip_code');
        $table->date('birth_date');
        $table->date('date_hired');
        $table->timestamps();
    });
}
public function up(): void
{
    Schema::create('employees', function (Blueprint $table) {
        $table->id();
        $table->foreignId('country_id')->constrained()->cascadeOnDelete();
        $table->foreignId('state_id')->constrained()->cascadeOnDelete();
        $table->foreignId('city_id')->constrained()->cascadeOnDelete();
        $table->foreignId('department_id')->constrained()->cascadeOnDelete();
        $table->string('first_name');
        $table->string('last_name');
        $table->string('address');
        $table->string('zip_code');
        $table->date('birth_date');
        $table->date('date_hired');
        $table->timestamps();
    });
}
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Laravel/boost
FilamentFFilament / ❓┊help
3mo ago
Laravel permissions
FilamentFFilament / ❓┊help
9mo ago
Laravel SEO
FilamentFFilament / ❓┊help
3y ago
laravel project
FilamentFFilament / ❓┊help
3y ago