diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-11-06 22:46:06 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-11-06 22:46:06 +0000 |
commit | 29e888e4af2de7e317ce34040761362ad14286be (patch) | |
tree | 97bcea8735b054a268dd2bad15ef197b6c6e2986 /engine/schema | |
parent | 889401427a29567923784af90e085116df006015 (diff) | |
download | elgg-29e888e4af2de7e317ce34040761362ad14286be.tar.gz elgg-29e888e4af2de7e317ce34040761362ad14286be.tar.bz2 |
removed space which would break the schema parsing routine for the next poor sucker who tried to add a table - not the most robust code
git-svn-id: http://code.elgg.org/elgg/trunk@3629 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/schema')
-rw-r--r-- | engine/schema/mysql.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/schema/mysql.sql b/engine/schema/mysql.sql index 8a21c1733..ce6e7b7a1 100644 --- a/engine/schema/mysql.sql +++ b/engine/schema/mysql.sql @@ -365,4 +365,4 @@ CREATE TABLE `prefix_system_log` ( KEY `subject_guid` (`subject_guid`),
KEY `object_guid` (`object_guid`),
KEY `posted` (`posted`)
-) ENGINE = MYISAM DEFAULT CHARSET=utf8; +) ENGINE = MYISAM DEFAULT CHARSET=utf8; |