9DollarDomains Posted February 4, 2008 Share Posted February 4, 2008 Hi. I migrated over from WhoisCart to WHMCS and love it. When I migrated, I typed in all my customer's credit card numbers, but I missunderstood the meaning of 'card issue number' and used that field for the wrong purpose. I want to blank them all out now, since we don't use that with our processor. I was going to use a MySQL Query, but since that's a 'blob' field, I'm confused on what to do. If someone (MATT??) or someone could help with the proper MySQL syntax to erase/blank out the tblclients.issuenumber field, I would really appreciate it. 0 Quote Link to comment Share on other sites More sharing options...
JasonO Posted February 5, 2008 Share Posted February 5, 2008 http://forum.whmcs.com/showthread.php?t=8553 That any help? 0 Quote Link to comment Share on other sites More sharing options...
9DollarDomains Posted February 5, 2008 Author Share Posted February 5, 2008 Hi JasonO, thanx but no, this doesn't do what I need. I'm not asking how to remove the display from the templates (I've already done that using the templates supplied in that thread). What I'm talking about is actually removing a Card Issue Numbers from client profiles - that is to say, blanking out all the issuenumber field from the tblclients table. 0 Quote Link to comment Share on other sites More sharing options...
WHMCS CEO Matt Posted February 5, 2008 WHMCS CEO Share Posted February 5, 2008 The following query would clear all issue numbers for all clients: UPDATE tblclients SET issuenumber=''; Matt 0 Quote Link to comment Share on other sites More sharing options...
9DollarDomains Posted February 5, 2008 Author Share Posted February 5, 2008 OK, thanx. I thought that would work, but the 'blob' type threw me. I didn't want to try this and find out that it messed up the structure. Thanx again for the great support. edited... I just ran this query and it did exactly what it was supposed to... thanx. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.