From 12d3fe4509dda610e6b7adb120dc0530081c6768 Mon Sep 17 00:00:00 2001 From: winter Date: Tue, 17 Dec 2024 20:07:20 +0000 Subject: fix database/model discrepancies add avatar column for actor table, remove (un)subscribe fields from ActorEndpoints model --- migrations/20241217_200610_add_actor_avatar.php | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 migrations/20241217_200610_add_actor_avatar.php (limited to 'migrations') 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 @@ +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'); +}); -- cgit v1.3