Skip to content

Commit

Permalink
Add documentation for doctrine#6044 (doctrine#6069)
Browse files Browse the repository at this point in the history
<!-- Fill in the relevant information below to help triage your pull
request. -->

|      Q       |   A
|------------- | -----------
| Type         | improvement
| Fixed issues | Add docs for doctrine#6044 

#### Summary

Add docs for doctrine#6044 / doctrine#6046

---------

Co-authored-by: Alexander M. Turek <me@derrabus.de>
  • Loading branch information
2 people authored and cgknx committed Aug 30, 2023
1 parent 70c03e5 commit 63fffec
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/en/reference/schema-representation.rst
Expand Up @@ -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 <https://www.postgresql.org/docs/current/sql-createtable.htmll>`_

Column
~~~~~~

Expand Down

0 comments on commit 63fffec

Please sign in to comment.