diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-03-17 17:07:24 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-03-17 17:07:24 +0000 |
commit | 2530e3b908028473878d4b681e04a31509116eff (patch) | |
tree | b479bd2be83ef6d764888d321ff5aa96e5bc60ae | |
parent | 739f52e2d9e9c7b874efccdbb334e19c1905271f (diff) | |
download | elgg-2530e3b908028473878d4b681e04a31509116eff.tar.gz elgg-2530e3b908028473878d4b681e04a31509116eff.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* guid not needed in subtype since this is just a label.
git-svn-id: https://code.elgg.org/elgg/trunk@237 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/schema/mysql.sql | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/engine/schema/mysql.sql b/engine/schema/mysql.sql index 4d74fae8c..229c84064 100644 --- a/engine/schema/mysql.sql +++ b/engine/schema/mysql.sql @@ -33,12 +33,10 @@ CREATE TABLE `prefix_entities` ( -- Entity subtypes - lets you subtype one of the main objects (sites/objects/etc)
CREATE TABLE `prefix_entity_subtypes` (
`id` int(11) NOT NULL auto_increment,
- `guid` bigint(20) unsigned NOT NULL,
`subtype` varchar(50) NOT NULL,
PRIMARY KEY (`id`),
- UNIQUE KEY (`guid`),
UNIQUE KEY (`subtype`)
) ENGINE=MyISAM;
|