Migrations\AbstractMigration::table PHP Method

table() public method

public table ( $tableName, $options = [] ) : Migrations\Table
return Migrations\Table
    public function table($tableName, $options = array())
    {
        if ($this->autoId === false) {
            $options['id'] = false;
        }
        return new Table($tableName, $options, $this->getAdapter());
    }
AbstractMigration