Skip to content
Snippets Groups Projects
Commit c96b2767 authored by syuilo's avatar syuilo
Browse files

fix typo

parent 6c1f03ee
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
- 有効にするには、サーバー管理者がDeepLの無料アカウントを登録し、取得した認証キーを「インスタンス設定 > その他 > DeepL Auth Key」に設定する必要があります。 - 有効にするには、サーバー管理者がDeepLの無料アカウントを登録し、取得した認証キーを「インスタンス設定 > その他 > DeepL Auth Key」に設定する必要があります。
- Misskey更新時にダイアログを表示するように - Misskey更新時にダイアログを表示するように
- ジョブキューウィジェットに警報音を鳴らす設定を追加 - ジョブキューウィジェットに警報音を鳴らす設定を追加
UIデザインの調整 - UIデザインの調整
- データベースのインデックスを最適化 - データベースのインデックスを最適化
### Bugfixes ### Bugfixes
......
...@@ -203,7 +203,7 @@ export default abstract class Chart<T extends Record<string, any>> { ...@@ -203,7 +203,7 @@ export default abstract class Chart<T extends Record<string, any>> {
indices: [{ indices: [{
columns: ['date', 'group'], columns: ['date', 'group'],
unique: true, unique: true,
}, { // groupにnullが含まれると↑のuniqeuは機能しないので↓の部分インデックスでカバー }, { // groupにnullが含まれると↑のuniqueは機能しないので↓の部分インデックスでカバー
columns: ['date'], columns: ['date'],
unique: true, unique: true,
where: '"group" IS NULL' where: '"group" IS NULL'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment