diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-01-31 21:26:56 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-01-31 21:26:56 +0000 |
commit | 489903a08e44f3f78347ec4602583a8defaaaa0a (patch) | |
tree | a889c422d48e0bb4081d93e6cad2ccc171764606 /modules/system/system.install | |
parent | 585fdfc9ab56bd3014a68a7845b7ac9ae003b39d (diff) | |
download | brdo-489903a08e44f3f78347ec4602583a8defaaaa0a.tar.gz brdo-489903a08e44f3f78347ec4602583a8defaaaa0a.tar.bz2 |
- Patch #113603 by chx: first crack at re-implementing tabs.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index bf65b3fea..30de39ba0 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -344,6 +344,10 @@ function system_install() { parents varchar(255) NOT NULL default '', depth int NOT NULL default '0', has_children int NOT NULL default '0', + tab int NOT NULL default 0, + title varchar(255) NOT NULL default '', + default_tab int NOT NULL default '0', + parent varchar(255) NOT NULL default '', PRIMARY KEY (path), KEY vancode (vancode), KEY fit (fit), @@ -812,6 +816,10 @@ function system_install() { parents varchar(255) NOT NULL default '', depth int NOT NULL default '0', has_children int NOT NULL default '0', + tab int NOT NULL default '0', + title varchar(255) NOT NULL default '', + default_tab int NOT NULL default '0', + parent varchar(255) NOT NULL default '', PRIMARY KEY (path) )"); |