ItSolutionStuff.com

How to Add MySQL Trigger from Migration in Laravel?

By Hardik Savani • November 5, 2023
PHP Laravel MySql

Sometimes you require to add trigger in your mysql database of laravel. but you think how to create trigger using laravel migration because laravel not provide special function like insertTrigger and something so it problem to create direclty, But laravel DB::unprepared() through we can create trigger for database.

In Following example you can see how to create migration and create trigger code and how to write drop trigger code, so let's do it this way.

Create Migration:

Run the following command to create migration:

php artisan make:migration add_trigger

Migration:

<?php

use Illuminate\Database\Schema\Blueprint;

use Illuminate\Database\Migrations\Migration;

class AddTrigger extends Migration

{

public function up()

{

DB::unprepared('CREATE TRIGGER add_Item_city AFTER INSERT ON `items` FOR EACH ROW

BEGIN

INSERT INTO `items_city` (`item_id`) VALUES (NEW.id);

END');

}

public function down()

{

DB::unprepared('DROP TRIGGER `add_Item_city`');

}

}

?>

Run Migration:

php artisan migrate

Try this....

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Create Migration in Laravel 9?

Read Now →

How to Run Migration and Seeder on Laravel Vapor?

Read Now →

How to Change Column Length using Laravel Migration?

Read Now →

How to Update Enum Value in Laravel Migration?

Read Now →

Laravel Migration Enum Default Value Example

Read Now →

Laravel Migration Add Enum Column Example

Read Now →

Laravel Migration Add Comment to Column Example

Read Now →

Laravel Migration Custom Index Name Example

Read Now →

How to Add Foreign Key in Laravel Migration?

Read Now →

How to Change Table Name using Laravel Migration?

Read Now →

How to Remove Column from Table in Laravel Migration?

Read Now →

How to Change Column Name and Data Type in Laravel Migration?

Read Now →

How to Create Table using Migration in Laravel?

Read Now →