Commit 7c60afcc authored by Yusei Tahara's avatar Yusei Tahara

2008-05-22 yusei

* Change viewable_owner and owner columns of catalog table from varchar(32) to varbinary(255).

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@21082 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent bfdfd565
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
</object> </object>
</value> </value>
</item> </item>
<item>
<key> <string>_col</string> </key>
<value>
<tuple/>
</value>
</item>
<item> <item>
<key> <string>allow_simple_one_argument_traversal</string> </key> <key> <string>allow_simple_one_argument_traversal</string> </key>
<value> <value>
...@@ -95,8 +101,8 @@ ...@@ -95,8 +101,8 @@
CREATE TABLE `catalog` (\n CREATE TABLE `catalog` (\n
`uid` BIGINT UNSIGNED NOT NULL,\n `uid` BIGINT UNSIGNED NOT NULL,\n
`security_uid` INT UNSIGNED,\n `security_uid` INT UNSIGNED,\n
`owner` varchar(32) NOT NULL default \'\',\n `owner` varbinary(255) NOT NULL default \'\',\n
`viewable_owner` varchar(32) NOT NULL default \'\',\n `viewable_owner` varbinary(255) NOT NULL default \'\',\n
`path` varchar(255) NOT NULL default \'\',\n `path` varchar(255) NOT NULL default \'\',\n
`relative_url` varchar(255) NOT NULL default \'\',\n `relative_url` varchar(255) NOT NULL default \'\',\n
`parent_uid` BIGINT UNSIGNED default \'0\',\n `parent_uid` BIGINT UNSIGNED default \'0\',\n
...@@ -187,8 +193,8 @@ CREATE TABLE `catalog` (\n ...@@ -187,8 +193,8 @@ CREATE TABLE `catalog` (\n
CREATE TABLE `catalog` (\n CREATE TABLE `catalog` (\n
`uid` BIGINT UNSIGNED NOT NULL,\n `uid` BIGINT UNSIGNED NOT NULL,\n
`security_uid` INT UNSIGNED,\n `security_uid` INT UNSIGNED,\n
`owner` varchar(32) NOT NULL default \'\',\n `owner` varbinary(255) NOT NULL default \'\',\n
`viewable_owner` varchar(32) NOT NULL default \'\',\n `viewable_owner` varbinary(255) NOT NULL default \'\',\n
`path` varchar(255) NOT NULL default \'\',\n `path` varchar(255) NOT NULL default \'\',\n
`relative_url` varchar(255) NOT NULL default \'\',\n `relative_url` varchar(255) NOT NULL default \'\',\n
`parent_uid` BIGINT UNSIGNED default \'0\',\n `parent_uid` BIGINT UNSIGNED default \'0\',\n
......
2008-05-22 yusei
* Change viewable_owner and owner columns of catalog table from varchar(32) to varbinary(255).
2008-04-17 yusei 2008-04-17 yusei
* Revise version to 5.0. * Revise version to 5.0.
......
105 106
\ No newline at end of file \ 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