|
From: Tony <td_...@ya...> - 2008-10-27 06:10:50
|
Hi, I've applied the DB schema changes from the latest SVN commits and have noticed that support has been added for an "address" field in the userinfo table. https://daloradius.svn.sourceforge.net/svnroot/daloradius/trunk/contrib/db/mysql-migrate-0.97-to-0.98.sql ALTER TABLE userinfo ADD address VARCHAR(200) AFTER mobilephone; ALTER TABLE userinfo ADD city VARCHAR(200) AFTER address; ALTER TABLE userinfo ADD state VARCHAR(200) AFTER city; ALTER TABLE userinfo ADD zip VARCHAR(200) AFTER state; I have also downloaded the latest page for adding a new user: https://daloradius.svn.sourceforge.net/svnroot/daloradius/trunk/mng-new.php My problem is that the "add user" page doesn't have anywhere I can fill in the address details that have been added to the DB schema. Am I missing something, or is it just a case of the user interface not caught up to the DB changes yet. Also on the changing user details stuff, if I add "Notes" to a user, they are not saved. When I go back to look there is nothing there. I originally tried storing address information in the Notes field, but this doesn't help either if it's not saved. I've checked the DB (with mysql commands) and the Notes information is there, it's just being shown in the GUI (I'll add a SF bug for this). Thanks, Tony. |