From 88a69fdaaf423c846cd54a2a026847808fc8a55a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Thu, 29 Jan 2026 10:56:03 +0100 Subject: [PATCH] Update migration steps to reflect new order and add avatar URL migration --- go_cloud/migrations/run-migrations.sh | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/go_cloud/migrations/run-migrations.sh b/go_cloud/migrations/run-migrations.sh index f748df7..acac721 100644 --- a/go_cloud/migrations/run-migrations.sh +++ b/go_cloud/migrations/run-migrations.sh @@ -55,8 +55,20 @@ echo "Step 6/7: Organization invite links..." run_migration "$SCRIPT_DIR/0006_org_invite_link.sql" echo -echo "Step 7/7: File share links..." +echo "Step 7/8: File share links..." run_migration "$SCRIPT_DIR/0007_file_share_links.sql" +echo +echo "Step 8/9: File share links nullable org..." +run_migration "$SCRIPT_DIR/0008_file_share_links_nullable_org.sql" + +echo +echo "Step 9/10: File share links org id nullable..." +run_migration "$SCRIPT_DIR/0009_file_share_links_org_id_nullable.sql" + +echo +echo "Step 10/10: Add avatar URL to users..." +run_migration "$SCRIPT_DIR/0010_add_avatar_url.sql" + echo echo "=== All migrations completed successfully! ==="