/[drupal]/contributions/modules/crossite/crossite.install
ViewVC logotype

Contents of /contributions/modules/crossite/crossite.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (show annotations) (download) (as text)
Thu Jun 7 03:53:28 2007 UTC (2 years, 5 months ago) by hanenkamp
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-5
Changes since 1.3: +0 -0 lines
File MIME type: text/x-php
Further refined the redirect so that it works a little more consistently.
1 <?php
2 // $Id$
3
4 function crossite_install() {
5 switch ($GLOBAL['db_type']) {
6 case 'mysql':
7 case 'mysqli':
8 db_query("CREATE TABLE {crossite_domains_tids} (
9 tid int unsigned NOT NULL default '0',
10 conf_path varchar(100) NOT NULL
11 PRIMARY KEY (tid, conf_path)
12 ) /*!40100 DEFAULT CHARACTER SET utf8 */");
13 break;
14 }
15 }
16
17 ?>

  ViewVC Help
Powered by ViewVC 1.1.2