diff options
Diffstat (limited to 'engine')
-rw-r--r-- | engine/schema/mysql.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/schema/mysql.sql b/engine/schema/mysql.sql index 9cd51c30e..9646edb5e 100644 --- a/engine/schema/mysql.sql +++ b/engine/schema/mysql.sql @@ -48,10 +48,10 @@ CREATE TABLE `prefix_entity_relationships` ( `id` int(11) NOT NULL auto_increment,
`guid_one` bigint(20) unsigned NOT NULL,
- `relationship_type` varchar(50) NOT NULL,
+ `relationship` varchar(50) NOT NULL,
`guid_two` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`id`),
- UNIQUE KEY (`guid_one`,`relationship_type`,`guid_two`)
+ UNIQUE KEY (`guid_one`,`relationship`,`guid_two`)
) ENGINE=MyISAM ;
--
|