Method |
Description |
|
add_column ( $table_name, $new_column_name, $field_attributes ) |
Add column to a specific table |
|
build_table ( $new_table, $primary_column ) : boolean | mixed | null | PDOStatement | resource |
Function to build a new table |
|
drop_column ( $table_name, $old_column_name ) |
Drop column of a table |
|
drop_table ( $old_table ) |
Drop table |
|
move_column ( $old_table, $new_table, $column_name ) |
Move a single column from one table to another |
|
rename_column ( $table_name, $old_column_name, $new_column_name, $field_attributes ) : boolean | mixed | PDOStatement | resource |
Function to rename column name |
|
transfer_table ( $old_table, $new_table ) |
Move old table to new table. |
|