Skip to content

Commit

Permalink
chore: update code
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrxyy committed Oct 10, 2024
1 parent 7e4c90a commit b2e4f91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/models/Database/index.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
Param,
} from '@nestjs/common';
import { DBService } from './index.service';
import { DB } from './db.model';
import { DB } from './DB.model';
import { KnexContainer } from 'src/utils/knex';

@Controller('db')
Expand Down
2 changes: 1 addition & 1 deletion src/models/Database/index.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { config } from 'dotenv';
// db.service.ts
import { Injectable } from '@nestjs/common';
import { InjectModel } from '@nestjs/sequelize';
import { DB } from './db.model';
import { DB } from './DB.model';
import { KnexContainer } from 'src/utils/knex';
import { get, map, set } from 'lodash';
import { dbDrivers, DBTypes } from './DBTypes';
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "./tsconfig.base.json",
"compilerOptions": {
"paths": {
"@dbml/core": ["../packages/dbml/packages/dbml-core"],
"@dbml/core": ["./node_modules/dbml-core"],
"sequelize-auto": ["./packages/sequelize-auto-model"],
"knex-schema-inspector": ["./packages/knex-schema-inspector"],
"knex-repositories": ["./packages/knex-repositories"],
Expand Down

0 comments on commit b2e4f91

Please sign in to comment.