feat: alembic migration added

This commit is contained in:
2025-06-04 21:43:39 -04:00
parent a91469257b
commit ccb934986f
21 changed files with 348 additions and 9 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ def health_check():
@app.post("/items/", response_model=schemas.Item)
def create_item(item: schemas.ItemCreate, db: Session = Depends(get_db)):
def create_item(item: schemas.Item, db: Session = Depends(get_db)):
return crud.create_item(db, item)