16 lines
665 B
Plaintext
16 lines
665 B
Plaintext
export const metadata = {
|
|
title: `Errors After Upgrading`,
|
|
}
|
|
|
|
# {metadata.title}
|
|
|
|
If you run into errors after updating Medusa and its dependencies, it's highly recommended to check the Upgrade Guides if there is a specific guide for your version. These guides include steps required to perform after upgrading Medusa.
|
|
|
|
If there's no upgrade guide for your version, make sure that you ran the `db:migrate` command in the root directory of your Medusa application:
|
|
|
|
```bash
|
|
npx medusa db:migrate
|
|
```
|
|
|
|
This ensures your application has the latest database structure required. Then, try running your Medusa application again and check whether the same error occurs.
|