From 531b45d045cd1468a37ebf1de4d39352e51360b9 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 5 Sep 2007 08:27:57 +0000 Subject: - Patch #172643 by chx and fresco: fixed the leave shadow copy functionality. --- modules/forum/forum.schema | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'modules/forum/forum.schema') diff --git a/modules/forum/forum.schema b/modules/forum/forum.schema index e69de29bb..738fb8e39 100644 --- a/modules/forum/forum.schema +++ b/modules/forum/forum.schema @@ -0,0 +1,18 @@ + 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; +} -- cgit v1.2.3