What is your naming convention for DATETIME columns (in my case, using MS SQL Server)
For a column that stores when the row was created CreatedDatetime makes sense, or LastModifiedDatetime.
But for a simple table, let's say one called Event, would you create columns called:
TABLE Event ==================================================== EventID, // Primary key EventDatetime, // When the event is happening EventEnabled // Is the event is on or these column names
TABLE Event ==================================================== ID, // Primary key Datetime, // When the event is happening Enabled // Is the event is on If you'd use neither convention: Please provide the column name you would use.