diff options
Diffstat (limited to 'migrations')
| -rw-r--r-- | migrations/20241217_200610_add_actor_avatar.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/migrations/20241217_200610_add_actor_avatar.php b/migrations/20241217_200610_add_actor_avatar.php new file mode 100644 index 0000000..09af758 --- /dev/null +++ b/migrations/20241217_200610_add_actor_avatar.php @@ -0,0 +1,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'); +}); |
