Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
203 views
in Q2A Core by

For example in below how can we rename 'email' to 'useremail' without causing the website break!

CREATE TABLE `qa_users` (
  `userid` int(10) UNSIGNED NOT NULL,                        
  `created` datetime NOT NULL,
  `createip` varbinary(16NOT NULL,
  `email` varchar(80NOT NULL,      
Q2A version: 1.84

1 Answer

+1 vote
by
It’s not really possible because the email field is referenced all over the code.

It doesn’t make sense why you would want to rename that field though.
...