blob: 09af7587eb8031c0f999ac74f852f29d6619be54 (
plain)
1
2
3
4
5
6
7
8
|
<?php
use \Digitigrade\Db\Migrator;
Migrator::getInstance()->register(20241217_200610, function (PDO $db) {
// i really have no idea why this wasn't the case already?
$db->exec('ALTER TABLE actor ADD COLUMN avatar text');
});
|