Pheasant\Database\Mysqli\Table::createIfNotExists PHP Method

createIfNotExists() public method

Creates the table if it doesn't exist
public createIfNotExists ( $columns, $options = 'charset=utf8 engine=innodb' )
    public function createIfNotExists($columns, $options = 'charset=utf8 engine=innodb')
    {
        if (!$this->exists()) {
            $this->create($columns, $options);
        }
    }