169 похожих чатов

Hey I want a suggestion for table design for the

subscription plan feature and usage track. here is my current schema.


Table TeamPlan
(
workspace_id : bigint pk
storage : bigint
video_duration_limit : bigint
audio_duration_limit : bigint
... other feature fields usage
)

Table TeamPlanUsage (
workspace_id : bigint pk
storage_usage: bigint
video_duration_usage : bigint
audio_duration_usage : bigint
... other feature fields usage
)

same as for BoardPlan.
should i go with it? is it good to go?

3 ответов

28 просмотров

Possible Improvements or Considerations: 1. Ensure that there is a foreign key relationship between TeamPlanUsage.workspace_id and TeamPlan.workspace_id. This maintains referential integrity. 2. Consider indexing fields that are frequently queried to speed up data retrieval, especially if your tables become large. 3. If tracking changes over time is important, consider adding timestamp fields like created_at and updated_at to track when records are created or modified. 4. If your plans are likely to evolve with more features, consider a more flexible structure for features. For instance, a key-value pair table for features could make it easier to add new features without altering the table schema. 5. Review for opportunities to further normalize the data if redundancy is observed, but balance this with the performance needs of your application. 6. Assuming the BoardPlan follows a similar structure, ensure consistency in design and naming conventions across different plan types. Additional Suggestions: Historical Data Tracking: If historical data is important (e.g., how usage grows over time), consider a separate table to log historical usage. Alerts for Limit Approaching: Implement functionality to alert users as they approach their plan limits.

Rahul-Singh Автор вопроса
Sanjay
Possible Improvements or Considerations: 1. Ensure...

if i give screenshot of feature then can you please help me to identify it.

Похожие вопросы

Обсуждают сегодня

Господа, а что сейчас вообще с рынком труда на делфи происходит? Какова ситуация?
Rꙮman Yankꙮvsky
29
А вообще, что может смущать в самой Julia - бы сказал, что нет единого стандартного подхода по многим моментам, поэтому многое выглядит как "хаки" и произвол. Короче говоря, с...
Viktor G.
2
30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
14
Добрый день! Скажите пожалуйста, а какие программы вы бы рекомендовали написать для того, чтобы научиться управлять памятью? Можно написать динамический массив, можно связный ...
Филипп
7
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Ребят в СИ можно реализовать ООП?
Николай
33
https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_h_common.erl#L174 https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_olp.erl#L76 15 лет назад...
Maksim Lapshin
20
Карта сайта