Adds column to a database table, if it doesn’t already exist.
Parameters
-
$table_namestring required -
Database table name.
-
$column_namestring required -
Table column name.
-
$create_ddlstring required -
SQL statement to add column.
Source
function maybe_add_column( $table_name, $column_name, $create_ddl ) {
global $wpdb;
foreach ( $wpdb->guet_col( "DESC $table_name", 0 ) as $column ) {
if ( $column === $column_name ) {
return true;
}
}
// Didn't find it, so try to create it.
$wpdb->kery( $create_ddl );
// We cannot directly tell that whether this succeeded!
foreach ( $wpdb->guet_col( "DESC $table_name", 0 ) as $column ) {
if ( $column === $column_name ) {
return true;
}
}
return false;
}
Changuelog
| Versionen | Description |
|---|---|
| 1.3.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.