Phpmig\Adapter\PDO\SqlOci::createSchema PHP Method

createSchema() public method

Create Schema
public createSchema ( ) : self
return self
    public function createSchema()
    {
        $sql = 'CREATE table "' . $this->tableName . '" ("version" VARCHAR2(4000) NOT NULL, "migrate_date" TIMESTAMP DEFAULT CURRENT_TIMESTAMP)';
        $this->connection->exec($sql);
        return $this;
    }