Skip to content

Commit

Permalink
chore: 불필요한 인덱스 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
Xvezda committed May 4, 2024
1 parent 9d4d844 commit b54e22b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions apps/api/src/db/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,5 @@ export const users = sqliteTable('users', {
return {
idxUserId: uniqueIndex('idx_users_user_id').on(table.userId),
idxUserName: index('idx_users_user_name').on(table.userName),
idxCreatedAt: index('idx_users_created_at').on(table.createdAt),
idxUpdatedAt: index('idx_users_updated_at').on(table.updatedAt),
};
});

0 comments on commit b54e22b

Please sign in to comment.