Files
medusa-store/packages/user/mikro-orm.config.dev.ts
Philip Korsholm b2eaac8cb1 feat(user): Init user module (#6293)
* init user module

* add migration

* update module with latest utils

* pr ready

* make interface types interfaces
2024-02-06 11:10:54 +08:00

9 lines
200 B
TypeScript

import * as entities from "./src/models"
module.exports = {
entities: Object.values(entities),
schema: "public",
clientUrl: "postgres://postgres@localhost/medusa-user",
type: "postgresql",
}