2
votes
Is this good membership payment database schema?
I concur with the previous answers from jtyost2 and Yishai.
One other note, our convention is to name Entity tables in the singular, matching the class name. That is, we name one row (we n …
7
votes
How to check if a date is in a given range?
No, it's not necessary to convert to timestamp to do the comparison, given that the strings are validated as dates in 'YYYY-MM-DD' canonical format.
This test will work:
( ( …
