I have developed a wordpress plugin , i am planning to update the plugin. In the plugin updation process i want to update the already exist tables fields which is created when plugin activated . I want when the user update the plugin then the new field added to already exist table with default value. Can you please suggest me a method how i achieve this.

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You should be investigating the dbDelta function. Here's the link http://codex.wordpress.org/Creating_Tables_with_Plugins#Creating_or_Updating_the_Table

From the Codex: The dbDelta function examines the current table structure, compares it to the desired table structure, and either adds or modifies the table as necessary, so it can be very handy for updates (see wp-admin/upgrade-schema.php for more examples of how to use dbDelta).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.