aboutsummaryrefslogtreecommitdiff
path: root/engine/schema/mysql.sql
diff options
context:
space:
mode:
Diffstat (limited to 'engine/schema/mysql.sql')
-rw-r--r--engine/schema/mysql.sql2
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;