mysql alter to table
Posted
by
user485783
on Stack Overflow
See other posts from Stack Overflow
or by user485783
Published on 2011-02-15T15:23:17Z
Indexed on
2011/02/15
15:25 UTC
Read the original article
Hit count: 323
Hi,
I drop the mysql alter code below to database via phpmyadmin one by one, it it work fine, is there anyone could help me how to drop it all together at once? or do you know the the samples of php code that may execute it? just let me know please. thanks in advace
ALTER TABLE
user
ADDtitle
varchar(16) COLLATE utf8_bin NOT NULL DEFAULT '' AFTERuser_id
ALTER TABLE
customer
ADDtitle
varchar(16) COLLATE utf8_bin NOT NULL DEFAULT '' AFTERcustomer_id
ALTER TABLEcustomer
ADDdate_birtdate
datetime NOT NULL DEFAULT '0000-00-00 00:00:00' AFTERlastname
ALTER TABLEcustomer
ADDsecurity_question
varchar(96) COLLATE utf8_bin NOT NULL DEFAULT '' AFTERfax
ALTER TABLEcustomer
ADDsecurity_answer
varchar(96) COLLATE utf8_bin NOT NULL DEFAULT '' AFTERfax
ALTER TABLEcustomer
ADDpin_number
text COLLATE utf8_bin AFTERpassword
ALTER TABLEcustomer
ADDnotes
text COLLATE utf8_bin AFTERbank_number
ALTER TABLEcustomer
ADDlast_active
datetime NOT NULL DEFAULT '0000-00-00 00:00:00' AFTERdate_added
© Stack Overflow or respective owner