You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every row in the messages SQL table has a 1-to-1 relationship with a row in the messagekeys table. This means we have to write a lot of extra code any time we want to read a message key, and it incurs a (small) performance cost on almost every query at runtime. We should write a database migration to combine these two tables.
The text was updated successfully, but these errors were encountered:
Every row in the
messages
SQL table has a 1-to-1 relationship with a row in themessagekeys
table. This means we have to write a lot of extra code any time we want to read a message key, and it incurs a (small) performance cost on almost every query at runtime. We should write a database migration to combine these two tables.The text was updated successfully, but these errors were encountered: