Skip to content
Snippets Groups Projects
Commit 757e6cd0 authored by Robin Appelman's avatar Robin Appelman
Browse files

typos....

parent 011732a0
Branches
No related tags found
No related merge requests found
......@@ -397,7 +397,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common
$db->loadModule('Datatype', null, true);
$type = $db->datatype->getTypeDeclaration($field['definition']);
if($type=='SERIAL PRIMARY KEY'){//not correct when altering a table, since serials arent a real type
$type='INTERGER';//use integer instead
$type='INTEGER';//use integer instead
}
$query = "ALTER $field_name TYPE $type USING CAST($field_name AS $type)";
$result = $db->exec("ALTER TABLE $name $query");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment