From 29a6913890a675ddf1a9239b4407f105e02dc95d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ctibor=20Bran=C4=8D=C3=ADk?= Date: Sun, 20 Mar 2016 19:27:01 +0100 Subject: Added drupal modules for site --- .../modules/advanced_help/advanced_help.install | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 sites/all/modules/advanced_help/advanced_help.install (limited to 'sites/all/modules/advanced_help/advanced_help.install') diff --git a/sites/all/modules/advanced_help/advanced_help.install b/sites/all/modules/advanced_help/advanced_help.install new file mode 100644 index 000000000..6c4455a04 --- /dev/null +++ b/sites/all/modules/advanced_help/advanced_help.install @@ -0,0 +1,61 @@ + 'Stores search index correlations for advanced help topics.', + 'fields' => array( + 'sid' => array( + 'type' => 'serial', + 'unsigned' => TRUE, + 'not null' => TRUE, + 'description' => 'The primary key to give to the search engine for this topic.', + 'no export' => TRUE, + ), + 'module' => array( + 'type' => 'varchar', + 'length' => '255', + 'default' => '', + 'not null' => TRUE, + 'description' => 'The module that owns this topic.', + ), + 'topic' => array( + 'type' => 'varchar', + 'length' => '255', + 'default' => '', + 'not null' => TRUE, + 'description' => 'The topic id.', + ), + 'language' => array( + 'type' => 'varchar', + 'length' => 12, + 'not null' => TRUE, + 'default' => '', + 'description' => 'The language this search index relates to.', + ), + ), + 'primary key' => array('sid'), + 'indexes' => array('language' => array('language')), + 'foreign keys' => array( + 'system' => array( + 'table' => 'system', + 'columns' => array('name' => 'name'), + ), + ), + ); + + return $schema; +} -- cgit v1.2.3