Skip to content

Instantly share code, notes, and snippets.

View cage-is's full-sized avatar
💥

Jeffrey Lemay cage-is

💥
View GitHub Profile
@cage-is
cage-is / build-status-badge.svg
Created January 21, 2026 14:45
Build status for PR #2639
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Setting up xdebug on development server

Install xdebug

sudo apt-get install php-xdebug

Edit xdebug.ini

This step might not be 100% necessary but I'm including it because it's one of the things I did in the process.

Create the Migration

<?php
public function change()
{
    $this->table('table_name')->addColumn('deleted_at', 'datetime', ['null' => true])->save();
}

Add the Listener