skip to Main Content

Rollback migration in laravel

I want to write down() function in migration and after run rollback command I'm getting error. Migration that i want to rollback looks like this: public function up(): void { Schema::table('posts', function (Blueprint $table) { $table->foreignId('competition_id')->after('content_id')->nullable()->constrained('competitions'); $table->unique(['account_id', 'competition_id']); }); }…

VIEW QUESTION
Back To Top
Search