Commit cba17d0b authored by Vincent Pelletier's avatar Vincent Pelletier

Don't use MySQL AUTOINCREMENT feature.

It is known to cause table locks when no value is provided for such
column. We now always generate uids in ERP5, so this setting is useless.
parent f29c02db
......@@ -57,7 +57,7 @@
# Table: \'catalog\'\n
#\n
CREATE TABLE `catalog` (\n
`uid` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,\n
`uid` BIGINT UNSIGNED NOT NULL,\n
`security_uid` INT UNSIGNED,\n
`path` varchar(255) NOT NULL default \'\',\n
`owner` varchar(32) NOT NULL default \'\',\n
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment