diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-10-05 14:43:26 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-10-05 14:43:26 +0000 |
commit | 39706e3c51cf206ca6669bbb7a090d2f7d394591 (patch) | |
tree | 9286ccd302d526ea8a1de799081356fcc77c28a3 /modules/forum/forum.schema | |
parent | d568128b9f7a0181b31e9baa087022e892352ea7 (diff) | |
download | brdo-39706e3c51cf206ca6669bbb7a090d2f7d394591.tar.gz brdo-39706e3c51cf206ca6669bbb7a090d2f7d394591.tar.bz2 |
- Patch #150245 by webchick, bjaspan, ralf, Arancaytar et al: move the .schema files into .install files to prevent mistakes.
Diffstat (limited to 'modules/forum/forum.schema')
-rw-r--r-- | modules/forum/forum.schema | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/forum/forum.schema b/modules/forum/forum.schema deleted file mode 100644 index 738fb8e39..000000000 --- a/modules/forum/forum.schema +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -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; -} |