I am new to Codeigniter and just learning the ion authentication system. I just ask a few questions:
1) Is it possible to change the default user table? (and would you advise for it or against it?) I understand that in a model, view, library or controller there may be functions that expect tables to have their exact structures by default, but, for example, I do not need a company column so how can i remove it?
2) How to add additional user information to the default user table? (Will this affect any functions if I just execute some sql to add columns to the user table by default?)
3) This is just what you should get from the whole question: would someone recommend just creating a separate table for my additional user information and using my user ID as the primary key in this new table, and then just access tjat information through my own models?
Thank you for your help!
source
share