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

Contents of /contributions/modules/sheetnode/sheetnode.install

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


Revision 1.1 - (show annotations) (download) (as text)
Mon Nov 10 23:01:44 2008 UTC (12 months, 2 weeks ago) by kratib
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-5, DRUPAL-6--1
File MIME type: text/x-php
Initial checkin, 5.x compatible
1 <?php
2 // $Id$
3
4 function sheetnode_install() {
5 switch ($GLOBALS['db_type']) {
6 case 'mysql':
7 case 'mysqli':
8 db_query("CREATE TABLE {sheetnode} (
9 nid int(10) unsigned NOT NULL,
10 value longtext NOT NULL,
11 PRIMARY KEY (nid)
12 ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
13 break;
14 }
15 }
16
17 function sheetnode_uninstall() {
18 db_query("DROP TABLE {sheetnode}");
19 }
20

  ViewVC Help
Powered by ViewVC 1.1.2