Pheasant\Database\Mysqli\SequencePool::initialize PHP Method

initialize() public method

Creates the sequence table if it doesn't exist
public initialize ( )
    public function initialize()
    {
        $this->_connection->table(self::TABLE)->createIfNotExists(array('name' => new \Pheasant\Types\StringType(255, 'notnull primary'), 'id' => new \Pheasant\Types\IntegerType(null, 'notnull unsigned')));
        return $this;
    }