Commit afdb9858 authored by Vincent Pelletier's avatar Vincent Pelletier

Make owner column NOT NULL.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@18515 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ae172764
......@@ -96,7 +96,7 @@ CREATE TABLE `catalog` (\n
`uid` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,\n
`security_uid` INT UNSIGNED,\n
`path` varchar(255) NOT NULL default \'\',\n
`owner` varchar(32) default \'\',\n
`owner` varchar(32) NOT NULL default \'\',\n
`relative_url` varchar(255) NOT NULL default \'\',\n
`parent_uid` BIGINT UNSIGNED default \'0\',\n
`id` varchar(255) default \'\',\n
......@@ -173,7 +173,7 @@ CREATE TABLE `catalog` (\n
`uid` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,\n
`security_uid` INT UNSIGNED,\n
`path` varchar(255) NOT NULL default \'\',\n
`owner` varchar(32) default \'\',\n
`owner` varchar(32) NOT NULL default \'\',\n
`relative_url` varchar(255) NOT NULL default \'\',\n
`parent_uid` BIGINT UNSIGNED default \'0\',\n
`id` varchar(255) default \'\',\n
......
399
\ No newline at end of file
401
\ No newline at end of file
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