diff --git a/docs/en/docs/tutorial/sql-databases.md b/docs/en/docs/tutorial/sql-databases.md index 3f3f11943..706bb5728 100644 --- a/docs/en/docs/tutorial/sql-databases.md +++ b/docs/en/docs/tutorial/sql-databases.md @@ -110,15 +110,6 @@ Here we create the tables on an application startup event. For production you would probably use a migration script that runs before you start your app. 🤓 -/// warning - -The `@app.on_event("startup")` and `@app.on_event("shutdown")` decorators are **deprecated** as of FastAPI v0.103.0. - -Use the `lifespan` parameter in the `FastAPI` class instead for lifecycle management. - -/// - - /// tip SQLModel will have migration utilities wrapping Alembic, but for now, you can use Alembic directly.