feat(tax): tax module scaffolding (#6417)

**What**
- Scaffolds the tax module
This commit is contained in:
Sebastian Rindom
2024-02-16 13:24:23 +00:00
committed by GitHub
parent 0d68eadf84
commit 7df4947ecf
31 changed files with 606 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
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,
},
}