diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-05-22 05:52:17 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-05-22 05:52:17 +0000 |
commit | 5094312d3b76d41aaf41c6a5c9dab04ccb7d1590 (patch) | |
tree | e4bb03e8ab3ae3184c3d29db410c27dc9cc78ab2 /modules/system/system.install | |
parent | 760a181c97bbe318af26c98ad53f7c47f26d28d5 (diff) | |
download | brdo-5094312d3b76d41aaf41c6a5c9dab04ccb7d1590.tar.gz brdo-5094312d3b76d41aaf41c6a5c9dab04ccb7d1590.tar.bz2 |
- Patch #140218 by Crell et al: make it possible to move page callbacks to their own include files.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 30d4a62d3..366ad44ea 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -371,6 +371,7 @@ function system_install() { description TEXT, position varchar(255) NOT NULL default '', weight int NOT NULL default 0, + file mediumtext NOT NULL default '', PRIMARY KEY (path), KEY fit (fit), KEY tab_parent (tab_parent) @@ -891,6 +892,7 @@ function system_install() { description TEXT, position varchar(255) NOT NULL default '', weight int NOT NULL default 0, + file text NOT NULL default '', PRIMARY KEY (path) )"); db_query("CREATE INDEX {menu_router}_fit_idx ON {menu_router} (fit)"); |