Skip to content

Instantly share code, notes, and snippets.

View KalemaEdgar's full-sized avatar
💯
Learning & Changing the World

Kalema Edgar KalemaEdgar

💯
Learning & Changing the World
View GitHub Profile
@KalemaEdgar
KalemaEdgar / CreateTrigger.php
Created March 4, 2020 18:39 — forked from me-shaon/CreateTrigger.php
Sample Laravel migration to create MySQL Trigger
<?php
use Illuminate\Database\Migrations\Migration;
class CreateTrigger extends Migration
{
public function up()
{
DB::unprepared('
CREATE TRIGGER tr_after_main_insert AFTER INSERT ON `main` FOR EACH ROW