Change user, affecteduser from varchar 255 to 64

cause if you are looking in the oc_user table the uid and displayname column have a max of varchar(64) so the max for you also varchar(64)
if not you are running with some databases in following error
```
innoDB': SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes
```
This commit is contained in:
libasys 2014-07-09 16:53:01 +02:00
Родитель 4ea738c172
Коммит b2ab5d732e
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -39,13 +39,13 @@
<name>user</name>
<type>text</type>
<notnull>true</notnull>
<length>255</length>
<length>64</length>
</field>
<field>
<name>affecteduser</name>
<type>text</type>
<notnull>true</notnull>
<length>255</length>
<length>64</length>
</field>
<field>
<name>app</name>