diff --git a/database/migrations/2024_01_03_143801_add_column_to_notifications.php b/database/migrations/2024_01_03_143801_add_column_to_notifications.php index c98d6a3d..602759e2 100644 --- a/database/migrations/2024_01_03_143801_add_column_to_notifications.php +++ b/database/migrations/2024_01_03_143801_add_column_to_notifications.php @@ -14,7 +14,7 @@ return new class extends Migration public function up() { Schema::table('notifications', function (Blueprint $table) { - $table->text('data')->after('notifiable_id')->nullable(); + $table->text('data')->nullable(); }); }