dbTable::addTableOpt PHP Method

addTableOpt() public method

This method takes a comma-separated list of table-level options and appends them to the table object.
public addTableOpt ( string $opt ) : array
$opt string Table option
return array Options
    function addTableOpt($opt)
    {
        if (isset($this->currentPlatform)) {
            $this->opts[$this->parent->db->databaseType] = $opt;
        }
        return $this->opts;
    }