Fix a few spelling mistakes
This commit is contained in:
parent
6708a5f548
commit
0baf624e8b
@ -59,7 +59,7 @@ abstract class Abstract_Util {
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Convienience public function to generate sql for creating a db table
|
||||
* Convenience public function to generate sql for creating a db table
|
||||
*
|
||||
* @deprecated Use the table builder class instead
|
||||
* @param string $name
|
||||
@ -94,7 +94,7 @@ abstract class Abstract_Util {
|
||||
}
|
||||
}
|
||||
|
||||
// Join column definitons together
|
||||
// Join column definitions together
|
||||
$columns = array();
|
||||
foreach($column_array as $n => $props)
|
||||
{
|
||||
|
@ -34,9 +34,10 @@ class Firebird_Util extends Abstract_Util {
|
||||
* @param string $name
|
||||
* @param array $fields
|
||||
* @param array $constraints
|
||||
* @param bool $if_not_exists
|
||||
* @return string
|
||||
*/
|
||||
public function create_table($name, $fields, array $constraints=array())
|
||||
public function create_table($name, $fields, array $constraints=array(), $if_not_exists=FALSE)
|
||||
{
|
||||
return parent::create_table($name, $fields, $constraints, FALSE);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user