Files
medusa-store/packages/modules/notification/mikro-orm.config.dev.ts
Stevche Radevski 144e09e852 feat: Add the basic implementation of notification module (#7282)
* feat: Add the basic implementation of notification module

* fix: Minor fixes and introduction of idempotency key

* fix: Changes based on PR review
2024-05-10 11:22:03 +02:00

13 lines
321 B
TypeScript

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