diff --git a/docs/en/reference/schema-representation.rst b/docs/en/reference/schema-representation.rst index 3c25dfbfa51..f5aa7f4e0ac 100644 --- a/docs/en/reference/schema-representation.rst +++ b/docs/en/reference/schema-representation.rst @@ -76,6 +76,25 @@ All schema assets reside in the ``Doctrine\DBAL\Schema`` namespace. This chapter is far from being completely documented. +Table +~~~~~~ + +Represents a table in the schema. + +Vendor specific options +^^^^^^^^^^^^^^^^^^^^^^^ + +The following options, that can be set using ``default_table_options``, are completely vendor specific +and absolutely not portable. + +- **charset** (string): The character set to use for the table. Currently only supported + on MySQL. + +- **engine** (string): The DB engine used for the table. Currently only supported on MySQL. + +- **unlogged** (boolean): Set a PostgreSQL table type as + `unlogged `_ + Column ~~~~~~