13 lines
312 B
TypeScript
13 lines
312 B
TypeScript
import { TSMigrationGenerator } from "@medusajs/utils"
|
|
import * as entities from "./src/models"
|
|
|
|
module.exports = {
|
|
entities: Object.values(entities),
|
|
schema: "public",
|
|
clientUrl: "postgres://postgres@localhost/medusa-tax",
|
|
type: "postgresql",
|
|
migrations: {
|
|
generator: TSMigrationGenerator,
|
|
},
|
|
}
|