From bb304d3f5badce1b506141bd68983d68e3e62445 Mon Sep 17 00:00:00 2001 From: George Wu Date: Wed, 25 Feb 2026 08:59:01 -0800 Subject: [PATCH] docs: remove migration command from README Migrations are now automatically handled at server startup, so the manual 'cargo run --bin migrate --features migrations' step is no longer needed. --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 2e7e2b89..268124d1 100644 --- a/README.md +++ b/README.md @@ -121,8 +121,7 @@ echo "DATABASE_URL=postgres://user:pass@localhost/oxicloud" > .env # Build optimised binary cargo build --release -# Run migrations and start -cargo run --bin migrate --features migrations +# Start the server (migrations run automatically) cargo run --release ```