diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-05-25 09:28:10 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-05-25 09:28:10 +0000 |
commit | ae762838c0e92bded86370103df4583874c50da7 (patch) | |
tree | b61a2c7004b67a987630dc8b1e683fe45ee19b99 | |
parent | 6a1c36c38a5c63d7a00f3ff47a05d8f6f7ac9505 (diff) | |
download | brdo-ae762838c0e92bded86370103df4583874c50da7.tar.gz brdo-ae762838c0e92bded86370103df4583874c50da7.tar.bz2 |
- Patch #140218 by drewish: fixed MySQL 5 strict bug.
-rw-r--r-- | modules/system/system.install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 366ad44ea..c3244cfea 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -371,7 +371,7 @@ function system_install() { description TEXT, position varchar(255) NOT NULL default '', weight int NOT NULL default 0, - file mediumtext NOT NULL default '', + file mediumtext, PRIMARY KEY (path), KEY fit (fit), KEY tab_parent (tab_parent) @@ -892,7 +892,7 @@ function system_install() { description TEXT, position varchar(255) NOT NULL default '', weight int NOT NULL default 0, - file text NOT NULL default '', + file text, PRIMARY KEY (path) )"); db_query("CREATE INDEX {menu_router}_fit_idx ON {menu_router} (fit)"); |