Skip to content

Commit

Permalink
ci: remove schema specification in entities
Browse files Browse the repository at this point in the history
  • Loading branch information
yunchipang committed Sep 6, 2024
1 parent 54195e4 commit eed044d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modules/auth/entity/api-key.entity.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Entity, Column, PrimaryGeneratedColumn } from 'typeorm';

@Entity({ schema: 'wallet', name: 'api_key' })
@Entity({ name: 'api_key' })
export class ApiKey {
@PrimaryGeneratedColumn('uuid')
id: string;
Expand Down
2 changes: 1 addition & 1 deletion src/modules/wallet/entity/wallet.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
CreateDateColumn,
} from 'typeorm';

@Entity({ schema: 'wallet', name: 'wallet' })
@Entity({ name: 'wallet' })
export class Wallet {
@PrimaryGeneratedColumn()
id: number;
Expand Down

0 comments on commit eed044d

Please sign in to comment.