I’m super new to web development, but not new to programming as a whole. I’m extremely confused by this application which I was pulled into fixing because the person who normally does it can’t anymore. This may be a silly question, but I can’t find the code or any HTML that contains the actual web pages. In the main folder,
Tag: ruby-on-rails
What is better practice when storing a users full name in the database? 1 or 2 columns?
Is it considered better practice to store a first_name and a last_name in 2 separate columns? or would storing both in 1 column be ok? Answer Only you know that, really. It depends if you’re ever going to need to get those parts of the name back out separately. Storing first name and last name in a single column isn’t