IN my every database table , i have 5-6 feilds which are repetitive like
- active
- deleted
- createdAt
- updatedAt
- updatedBy
- createdBy
I am confused if i make separate tables for those or leave inside main table
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
<opinion>I don’t think it’s be worth the extra hassle. Especially since the rows would never be shared by other rows – there will always be a 1-to-1 mapping between other rows and these rows. Just keep them in the tables where they are now.</opinion>