Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add schema public.attendees #178

Merged
merged 4 commits into from
Jul 5, 2024
Merged

add schema public.attendees #178

merged 4 commits into from
Jul 5, 2024

Conversation

KannoStanfoot
Copy link
Contributor

@KannoStanfoot KannoStanfoot commented Jul 4, 2024

Issue

https://github.com/vuejs-jp/vuefes-2024-backside/issues/208

レビュー完了後Figmaのテーブルコメントクローズ、実装に合わせて修正しておきます。
https://www.figma.com/board/mRTYOtFjg3L8ozmjEEhHLh/Vue-Fes-Japan-2024-%E3%81%8A%E7%B5%B5%E6%8F%8F%E3%81%8D%E3%83%9C%E3%83%BC%E3%83%89?node-id=0-1&t=OesnkqcE9bmT3Rou-0

Details

  • attendeesテーブルのスキーマを追加した

Ask

role varchar(16), に関して、CHECK 制約やENUM 型で制限を設けるべきでしょうか?DB設計あまり詳細に制約をつけたことがなく、勝手が分からず。

@KannoStanfoot KannoStanfoot requested a review from jiyuujin July 4, 2024 09:16
@KannoStanfoot KannoStanfoot self-assigned this Jul 4, 2024
Copy link

netlify bot commented Jul 4, 2024

Deploy Preview for vuefes-2024 ready!

Name Link
🔨 Latest commit d0d8774
🔍 Latest deploy log https://app.netlify.com/sites/vuefes-2024/deploys/6687e87b3eb79000083b3325
😎 Deploy Preview https://deploy-preview-178--vuefes-2024.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@jiyuujin
Copy link
Collaborator

jiyuujin commented Jul 4, 2024

role の CHECK 制約や ENUM 型で制限

無くて良いかと思います
参加者に直接入力させるものではない(チケット種別から判定する)ので
アプリサイドで制約条件をうまく制御されられれば、取り急ぎ今回について問題は無さそうな気がしています mm

email varchar(100) not null unique,
avatar_url varchar(500) not null,
provider varchar(20) not null,
display_name varchar(24) not null,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ASK

display_name に NOT NULL 制約が入っていますが、
ソーシャルログインして取得され得る名前が初期値として入る想定で OK でしょうか?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jiyuujin
初回ログイン時は確かに display_name に初期値を入れないと空の状態ですね。失念していました。

となるとavatar_url は初期画像が入るので良いとして、receipt_idも今のままだと問題ですかね。
調べてみたところPostgreSQLのUNIQUEはnullを無視するようなので、receipt_idからもNOT NULL 制約を削除した方が良さそうでしょうか。

Copy link
Collaborator

@jiyuujin jiyuujin Jul 4, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

display_name に初期値を入れないと空の状態

Vue Fes 2023 の例ですが、ソーシャルログインしたら user?.user_metadata.preferred_username || user?.user_metadata.name || '' を設定いただければ、初期値は設定されます
(ただし、空白値を許容しているので、NOT NULL 削除は無難かも?
https://github.com/vuejs-jp/vuefes-2023/blob/main/app/composables/useAuth.ts#L66

receipt_idも今のままだと問題ですかね。

結論からいうと今のまま NOT NULL 制約を付けていただいて問題ありません

その理由は public.attendees の更新のタイミングにあります。ソーシャルログインしただけですと auth.users という別テーブル(Supbase プロジェクトを作成して、最初から存在する内部テーブル)が更新されるだけにとどまります

では、public.attendees の更新のタイミングはいつ生まれるのか。それは、ネームカード追加(あるいは、編集)画面で更新する際に、public.attendees の更新のタイミングがあるので、その際は receipt_id に NOT NULL 制約を付けておけば必ず何かしら入力しないと通らなくなります

こんな感じの説明で理解 OK ですかね?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jiyuujin
ありがとうございます。理解しました。
display_nameのNOT NULL制約を削除したコミットをpushしました。

Copy link
Collaborator

@jiyuujin jiyuujin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@KannoStanfoot
Copy link
Contributor Author

テーブル作成
vuefes-2024___vuejs-jp-2024___Supabase

@jiyuujin jiyuujin merged commit e7fc7ca into main Jul 5, 2024
6 checks passed
@jiyuujin jiyuujin deleted the feature/schema-attendees branch July 5, 2024 13:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants