Skip to content

Commit

Permalink
Remove old .io links (#134)
Browse files Browse the repository at this point in the history
Chore: Update links /crate.io/cratedb.com/
  • Loading branch information
matkuliak authored Apr 29, 2024
1 parent e22360d commit e04fa0b
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 20 deletions.
28 changes: 14 additions & 14 deletions docs/appendices/data-types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,33 +29,33 @@ This driver maps CrateDB types to the following PHP types:
"`object`__", "`array`__"
"`array`__", "`array`__"

__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#boolean
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#boolean
__ https://www.php.net/manual/en/language.types.boolean.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://www.php.net/manual/en/language.types.integer.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://www.php.net/manual/en/language.types.integer.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://www.php.net/manual/en/language.types.integer.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://www.php.net/manual/en/language.types.string.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://www.php.net/manual/en/language.types.float.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://www.php.net/manual/en/language.types.float.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#character-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#character-data
__ https://www.php.net/manual/en/language.types.string.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#ip
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#ip
__ https://www.php.net/manual/en/language.types.string.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#dates-and-times
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#dates-and-times
__ https://www.php.net/manual/en/class.datetime.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#geo-point
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#geo-point
__ https://www.php.net/manual/en/language.types.array.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#geo-shape
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#geo-shape
__ https://www.php.net/manual/en/language.types.array.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#object
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#object
__ https://www.php.net/manual/en/language.types.array.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#array
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#array
__ https://www.php.net/manual/en/language.types.array.php

.. _column-type-definitions:
Expand Down
6 changes: 3 additions & 3 deletions docs/appendices/table-options.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ Example on how to adjust the replicas:
$myTable = new Table('my_table', [], [], [], 0, $options);
.. _CrateDB CREATE TABLE Documentation: https://crate.io/docs/crate/reference/en/latest/sql/statements/create-table.html
.. _CrateDB Sharding Documentation: https://crate.io/docs/crate/reference/en/latest/general/ddl/sharding.html
.. _CrateDB Partitioned Tables Documentation: https://crate.io/docs/crate/reference/en/latest/general/ddl/partitioned-tables.html
.. _CrateDB CREATE TABLE Documentation: https://cratedb.com/docs/crate/reference/en/latest/sql/statements/create-table.html
.. _CrateDB Sharding Documentation: https://cratedb.com/docs/crate/reference/en/latest/general/ddl/sharding.html
.. _CrateDB Partitioned Tables Documentation: https://cratedb.com/docs/crate/reference/en/latest/general/ddl/partitioned-tables.html
2 changes: 1 addition & 1 deletion docs/build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"schemaVersion": 1,
"label": "docs build",
"message": "2.1.0"
"message": "2.1.2"
}
2 changes: 1 addition & 1 deletion docs/connect.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Next steps
Use the standard the `DBAL documentation`_ or `Doctrine ORM documentation`_ for the rest of
your setup process.

.. _database user: https://crate.io/docs/crate/reference/en/latest/admin/user-management.html
.. _database user: https://cratedb.com/docs/crate/reference/en/latest/admin/user-management.html
.. _DBAL: https://www.doctrine-project.org/projects/dbal.html
.. _DBAL documentation: https://www.doctrine-project.org/projects/doctrine-dbal/en/3.0/index.html
.. _Doctrine provided example: https://www.doctrine-project.org/projects/doctrine-orm/en/3.0/reference/configuration.html#obtaining-an-entitymanager
Expand Down
3 changes: 2 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ This driver also works with `Doctrine ORM`_, an `Object-Relational Mapper`_.
connect
appendices/index

.. _CrateDB: https://crate.io/products/cratedb/

.. _CrateDB: https://cratedb.com/product
.. _DBAL documentation: https://www.doctrine-project.org/projects/doctrine-dbal/en/3.0/index.html
.. _DBAL: https://www.doctrine-project.org/projects/dbal.html
.. _Doctrine ORM: https://www.doctrine-project.org/projects/orm.html
Expand Down

0 comments on commit e04fa0b

Please sign in to comment.