diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-07-02 17:08:36 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-07-02 17:08:36 +0000 |
commit | b6c069ad7d8bbc53a4e10b8a6c71326cab7f284c (patch) | |
tree | 79ec2a02a65af67d180a9c8db65d75725350e423 /modules/forum/forum.schema | |
parent | 5644ad02641b008016a03aedce5101dd47107341 (diff) | |
download | brdo-b6c069ad7d8bbc53a4e10b8a6c71326cab7f284c.tar.gz brdo-b6c069ad7d8bbc53a4e10b8a6c71326cab7f284c.tar.bz2 |
- Patch #20295 by pyromanfo, webchick, Gurpartap Singh et al: allow forum topics to be custom node types.
Diffstat (limited to 'modules/forum/forum.schema')
-rw-r--r-- | modules/forum/forum.schema | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/modules/forum/forum.schema b/modules/forum/forum.schema index 56a7d688f..e69de29bb 100644 --- a/modules/forum/forum.schema +++ b/modules/forum/forum.schema @@ -1,20 +0,0 @@ -<?php -// $Id$ - -function forum_schema() { - $schema['forum'] = array( - 'fields' => array( - 'nid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), - 'vid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), - 'tid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0) - ), - 'indexes' => array( - 'nid' => array('nid'), - 'tid' => array('tid') - ), - 'primary key' => array('vid'), - ); - - return $schema; -} - |