summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-08-06 10:25:56 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-08-06 10:25:56 +0000
commitc35b832b8253f1bdfea8886c82132d388d1024c5 (patch)
tree30105e001ee92fa3fa82f7fee7934d0b678bf20b /includes
parentfbd7a0bdc3c258319464dd4a544da3d95169237d (diff)
downloadbrdo-c35b832b8253f1bdfea8886c82132d388d1024c5.tar.gz
brdo-c35b832b8253f1bdfea8886c82132d388d1024c5.tar.bz2
#164759 by oadaeh: adding missing phpdoc @code tag
Diffstat (limited to 'includes')
-rw-r--r--includes/database.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/database.inc b/includes/database.inc
index 7606292a3..053228310 100644
--- a/includes/database.inc
+++ b/includes/database.inc
@@ -381,12 +381,13 @@ function db_escape_table($string) {
* one named 'node_title_type' on the field 'title' and the first four
* bytes of the field 'type':
*
+ * @code
* $schema['node'] = array(
* 'fields' => array(
* 'nid' => array('type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE),
* 'vid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0),
* 'type' => array('type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => ''),
- 'title' => array('type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => ''),
+ * 'title' => array('type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => ''),
* ),
* 'primary key' => array('nid'),
* 'unique keys' => array(
@@ -397,6 +398,7 @@ function db_escape_table($string) {
* 'node_title_type' => array('title', array('type', 4)),
* ),
* );
+ * @endcode
*
* @see drupal_install_schema()
*/