LPH
Well-known member
Does anyone have any links or suggestions on the best way to add to the xf_user database?
1. determine db name
2. determine prefix
3. add field
So, the plugin does this to a WP database:
Is it best practice to do similar to XF or ... ?
1. determine db name
2. determine prefix
3. add field
So, the plugin does this to a WP database:
PHP:
$wpdb->query("ALTER TABLE $wpdb->posts ADD `thread_id` INT( 10 ) UNSIGNED NOT NULL DEFAULT '0' AFTER `ID` ");
Is it best practice to do similar to XF or ... ?