Creates a field in a table.
bool db_create_field(string tablename, string field, string type)
The function returns TRUE if successful or FALSE otherwise.
// Create a new field "telefon" VARCHAR(15) in mytable
$result = db_create_field("mytable", "telefon", "VARCHAR(15)");