Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
5902ba5c
Commit
5902ba5c
authored
12 years ago
by
Bernhard Posselt
Browse files
Options
Downloads
Plain Diff
Merge pull request #2433 from owncloud/db_primary_keys
Additional indexes and missing primary keys
parents
b12254e9
f0528469
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
db_structure.xml
+54
-0
54 additions, 0 deletions
db_structure.xml
lib/util.php
+1
-1
1 addition, 1 deletion
lib/util.php
with
55 additions
and
1 deletion
db_structure.xml
+
54
−
0
View file @
5902ba5c
...
...
@@ -37,6 +37,8 @@
<index>
<name>
appconfig_appid_key_index
</name>
<primary>
true
</primary>
<unique>
true
</unique>
<field>
<name>
appid
</name>
<sorting>
ascending
</sorting>
...
...
@@ -134,6 +136,7 @@
<index>
<name>
file_map_lp_index
</name>
<primary>
true
</primary>
<unique>
true
</unique>
<field>
<name>
logic_path_hash
</name>
...
...
@@ -379,6 +382,7 @@
<index>
<name>
id_user_index
</name>
<unique>
true
</unique>
<primary>
true
</primary>
<field>
<name>
fileid
</name>
<sorting>
ascending
</sorting>
...
...
@@ -415,6 +419,20 @@
<length>
64
</length>
</field>
<index>
<name>
gu_gid_uid_index
</name>
<primary>
true
</primary>
<unique>
true
</unique>
<field>
<name>
gid
</name>
<sorting>
ascending
</sorting>
</field>
<field>
<name>
uid
</name>
<sorting>
ascending
</sorting>
</field>
</index>
</declaration>
</table>
...
...
@@ -448,6 +466,20 @@
</field>
</index>
<index>
<name>
ga_gid_uid_index
</name>
<primary>
true
</primary>
<unique>
true
</unique>
<field>
<name>
gid
</name>
<sorting>
ascending
</sorting>
</field>
<field>
<name>
uid
</name>
<sorting>
ascending
</sorting>
</field>
</index>
</declaration>
</table>
...
...
@@ -596,6 +628,8 @@
<index>
<name>
pref_userid_appid_key_index
</name>
<primary>
true
</primary>
<unique>
true
</unique>
<field>
<name>
userid
</name>
<sorting>
ascending
</sorting>
...
...
@@ -620,6 +654,15 @@
<declaration>
<field>
<name>
id
</name>
<autoincrement>
1
</autoincrement>
<type>
integer
</type>
<default>
0
</default>
<notnull>
true
</notnull>
<length>
4
</length>
</field>
<field>
<name>
userid
</name>
<type>
text
</type>
...
...
@@ -651,6 +694,17 @@
<length>
255
</length>
</field>
<index>
<name>
user_propertypath_index
</name>
<field>
<name>
userid
</name>
<sorting>
ascending
</sorting>
</field>
<field>
<name>
propertypath
</name>
<sorting>
ascending
</sorting>
</field>
</index>
</declaration>
</table>
...
...
This diff is collapsed.
Click to expand it.
lib/util.php
+
1
−
1
View file @
5902ba5c
...
...
@@ -75,7 +75,7 @@ class OC_Util {
public
static
function
getVersion
()
{
// hint: We only can count up. Reset minor/patchlevel when
// updating major/minor version number.
return
array
(
5
,
80
,
0
0
);
return
array
(
5
,
80
,
0
1
);
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment