exchange user_id_key for a unique one.
This commit is contained in:
parent
9250704ecb
commit
b3ac81f134
|
@ -1575,7 +1575,6 @@
|
|||
<name>creation_timestamp</name>
|
||||
<sorting>descending</sorting>
|
||||
</field>
|
||||
<!-- TODO: check whether this supports a query without creation timestamp -->
|
||||
</index>
|
||||
|
||||
<index>
|
||||
|
@ -1634,15 +1633,6 @@
|
|||
<length>64</length>
|
||||
</field>
|
||||
|
||||
<index>
|
||||
<name>comments_marker_user_id_index</name>
|
||||
<unique>false</unique>
|
||||
<field>
|
||||
<name>user_id</name>
|
||||
<sorting>descending</sorting>
|
||||
</field>
|
||||
</index>
|
||||
|
||||
<index>
|
||||
<name>comments_marker_object_index</name>
|
||||
<unique>false</unique>
|
||||
|
@ -1654,7 +1644,23 @@
|
|||
<name>object_id</name>
|
||||
<sorting>ascending</sorting>
|
||||
</field>
|
||||
<!-- TODO: check whether this supports a query with user_id -->
|
||||
</index>
|
||||
|
||||
<index>
|
||||
<name>comments_marker_index</name>
|
||||
<unique>true</unique>
|
||||
<field>
|
||||
<name>user_id</name>
|
||||
<sorting>descending</sorting>
|
||||
</field>
|
||||
<field>
|
||||
<name>object_type</name>
|
||||
<sorting>ascending</sorting>
|
||||
</field>
|
||||
<field>
|
||||
<name>object_id</name>
|
||||
<sorting>ascending</sorting>
|
||||
</field>
|
||||
</index>
|
||||
|
||||
</declaration>
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
// We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades
|
||||
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
|
||||
// when updating major/minor version number.
|
||||
$OC_Version = array(9, 0, 0, 14);
|
||||
$OC_Version = array(9, 0, 0, 15);
|
||||
|
||||
// The human readable string
|
||||
$OC_VersionString = '9.0.0 beta 2';
|
||||
|
|
Loading…
Reference in New Issue