diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2023-11-30 14:49:26 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-30 14:49:26 +0900 |
| commit | b05d71fabff55ac5653994a1188c6db88048e8ee (patch) | |
| tree | 1d2b60b73ac5c77ee37872f3d45f77144795afea /packages/backend/src/models/UserProfile.ts | |
| parent | enhance(dev): 開発モード時にlocaleと型定義が自動的に再生成... (diff) | |
| download | sharkey-b05d71fabff55ac5653994a1188c6db88048e8ee.tar.gz sharkey-b05d71fabff55ac5653994a1188c6db88048e8ee.tar.bz2 sharkey-b05d71fabff55ac5653994a1188c6db88048e8ee.zip | |
feat(frontend): 今日誕生日のフォロー中のユーザーを一覧表示できるウィジェットを追加 (#12450)
* (add) 今日誕生日のフォロイー一覧表示
* Update Changelog
* Update Changelog
* 実装漏れ
* create index
* (fix) index
Diffstat (limited to 'packages/backend/src/models/UserProfile.ts')
| -rw-r--r-- | packages/backend/src/models/UserProfile.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/backend/src/models/UserProfile.ts b/packages/backend/src/models/UserProfile.ts index 8a43b60039..6659a01412 100644 --- a/packages/backend/src/models/UserProfile.ts +++ b/packages/backend/src/models/UserProfile.ts @@ -29,6 +29,7 @@ export class MiUserProfile { }) public location: string | null; + @Index() @Column('char', { length: 10, nullable: true, comment: 'The birthday (YYYY-MM-DD) of the User.', |