From 7e3133b253959f30f3bba7301cea8ca62d039afb Mon Sep 17 00:00:00 2001 From: Alessandro Morelli Date: Mon, 19 Aug 2024 17:36:51 +0200 Subject: [PATCH] Minor cosmetic fix --- docs/en/reference/schema-representation.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/en/reference/schema-representation.rst b/docs/en/reference/schema-representation.rst index 20dd4c26d0..b0cf904ac6 100644 --- a/docs/en/reference/schema-representation.rst +++ b/docs/en/reference/schema-representation.rst @@ -100,18 +100,18 @@ and absolutely not portable. Option values for MySQL, MariaDB, PostgreSQL and SQLite: - - true (bool) - - false (bool) + - ``true`` (bool) + - ``false`` (bool) Option values for Oracle: - - global (string): emits CREATE GLOBAL TEMPORARY TABLE statement - - private (string): emits CREATE PRIVATE TEMPORARY TABLE statement, table name must begin with PRIVATE_TEMP_TABLE_PREFIX, default 'ORA$PTT' + - ``global`` (string): emits CREATE GLOBAL TEMPORARY TABLE statement + - ``private`` (string): emits CREATE PRIVATE TEMPORARY TABLE statement, table name must begin with PRIVATE_TEMP_TABLE_PREFIX, default 'ORA$PTT' Option values for DB2: - - created (string): emits CREATE GLOBAL TEMPORARY TABLE statement - - declared (string): emits DECLARE GLOBAL TEMPORARY TABLE statement + - ``created`` (string): emits CREATE GLOBAL TEMPORARY TABLE statement + - ``declared`` (string): emits DECLARE GLOBAL TEMPORARY TABLE statement - **on_commit** (string): declare table's commit options, only used if option **temporary** is set. Supported on Oracle and PostgreSQL