diff options
| author | Damien Regad <dregad@mantisbt.org> | 2024-05-26 16:34:48 +0200 |
|---|---|---|
| committer | Damien Regad <dregad@mantisbt.org> | 2024-05-26 16:34:48 +0200 |
| commit | 8cdcfead44d4bd90596631ecfb206e94c6595d3f (patch) | |
| tree | 4305b7ff92bb3170e3f48da7f137cc6d1c646074 | |
| parent | 72fd86d0d050e128272abebec1513a2cbe2a2ece (diff) | |
| download | adodb-8cdcfead44d4bd90596631ecfb206e94c6595d3f.tar.gz adodb-8cdcfead44d4bd90596631ecfb206e94c6595d3f.tar.bz2 adodb-8cdcfead44d4bd90596631ecfb206e94c6595d3f.zip | |
PHPDoc
| -rw-r--r-- | adodb-datadict.inc.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/adodb-datadict.inc.php b/adodb-datadict.inc.php index 89ebbe32..1282fbf0 100644 --- a/adodb-datadict.inc.php +++ b/adodb-datadict.inc.php @@ -510,10 +510,12 @@ class ADODB_DataDict { * * As some DBMs can't do that on their own, you need to supply the complete definition of the new table, * to allow recreating the table and copying the content over to the new table - * @param string $tabname table-name - * @param string $flds column-name and type for the changed column - * @param string $tableflds='' complete definition of the new table, eg. for postgres, default '' + * + * @param string $tabname table-name + * @param array|string $flds column-name and type for the changed column + * @param string $tableflds='' complete definition of the new table, eg. for postgres, default '' * @param array|string $tableoptions='' options for the new table see createTableSQL, default '' + * * @return array with SQL strings */ function alterColumnSQL($tabname, $flds, $tableflds='',$tableoptions='') |
