Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-02-26exchange user_id_key for a unique one.Arthur Schiwon
2016-02-24add index definitions for comments tablesArthur Schiwon
2016-02-22Make sure we can store strings as per the interfaceJoas Schilling
2016-02-03Add store/retrieve checksumsRoeland Jago Douma
* Add extra db column to filecache * Bump version * Update filecache code to actually handle checksum * Webdav code to store/retrieve checksums
2016-01-29introduce comments read marke tables, comes with user cleanup after deletionArthur Schiwon
2016-01-22Merge pull request #18531 from owncloud/ext-user-credentialsThomas Müller
External storage 'Login credentials' auth mechanism
2016-01-20cache mountpoints in the dbRobin Appelman
2016-01-18Introduce CredentialsManager for storage of credentials in DBRobin McCorkell
CredentialsManager performs a simple role, of storing and retrieving encrypted credentials from the database. Credentials are stored by user ID (which may be null) and credentials identifier. Credentials themselves may be of any type that can be JSON encoded. The rationale behind this is to avoid further (mis)use of oc_preferences, which was being used for all manner of data not related to user preferences.
2016-01-06[Share 2.0] Update db structure to stay backwards compatibleRoeland Jago Douma
2015-11-30Merge pull request #20650 from owncloud/systemtags-coreThomas Müller
Implement systemtag managers and mapper
2015-11-27Added system tags data structure and PHP side managersVincent Petry
Added SystemTagManager and SystemTagObjectMapper
2015-11-25[Sharing 2.0] Add a new db column for the file ownerRoeland Jago Douma
We need to store the owner of a file in the db to do efficient queries on the owner of a file. Without this we need to construct fill paths for each file id in the table and see who the owner of a file is. Which does not scale.
2015-11-20DB scheme for Comments table, resolves #20265Arthur Schiwon
2015-11-05Drop unused table file_mapMorris Jobke
* used only for windows support * windows support was dropped in 8.2.0 - see #17379 * was introduced in fd8cb9974be30aaca0d65d1807d6a4f784da5f0b * ref #18935
2015-09-15Use integer for availability instead of boolRobin McCorkell
2015-08-26Merge pull request #17662 from owncloud/locking-dbThomas Müller
Database backend for locking
2015-08-03rename path field to keyRobin Appelman
2015-08-03Fix db schemaRobin Appelman
2015-08-03Add database backend for high level lockingRobin Appelman
2015-07-20Store storage availability in databaseRobin McCorkell
Storage status is saved in the database. Failed storages are rechecked every 10 minutes, while working storages are rechecked every request. Using the files_external app will recheck all external storages when the settings page is viewed, or whenever an external storage is saved.
2015-07-14Remove index on file_target of share tableMorris Jobke
* causes issues on InnoDB because it exceeds the maximal key length of an index which is 767 (3-byte charset * varchar(512) = 1536) * fixes #17619
2015-07-08Add indexes to speedup DB queriesMorris Jobke
* file_target is often used in the sharing code in JOIN statements for retrieval of shares
2015-03-12we no longer support webdav locks - no need to keep the columnThomas Müller
2015-02-25set max argument length to 4000Robin Appelman
2015-02-25expand cron argument column to 2048Robin Appelman
2015-02-13Revert "Improve: Index for file_map"Joas Schilling
This reverts commit c9b56084051ad33f15ad8a1a7fee95d38ba0d954.
2015-02-13Revert "Incorporate review changes"Joas Schilling
This reverts commit f6a452cabf02e4a8005f874a77754f68abbc8fa5.
2015-02-12Incorporate review changesLukas Reschke
2015-02-12Improve: Index for file_mapwindaishi
Added two indices for file_map, that improve syncing and uploading and deleting files
2014-07-17Revert "add share index"Thomas Müller
This reverts commit e19b3a8794a2cadc86b0f3b01a516814b600026b.
2014-06-27shorten userid columns to 64 chars, ref #9186Jörn Friedrich Dreyer
2014-06-05- drop permissions table and related codeThomas Müller
- the file/folder's permission is now stored in the file cache - BackGroundWatcher has been removed - this has meanwhile be replaced by occ files:scan which can be executed in a cron jobs - increase version to trigger database migration
2014-06-02Merge pull request #8806 from owncloud/add_share_indexMorris Jobke
add share index
2014-05-31add another index to the filecache to reduce the number of queries without a ↵Frank Karlitschek
matching index
2014-05-31add share indexFrank Karlitschek
2014-05-28# This is a combination of 2 commits.Thomas Müller
# The first commit's message is: adding tests for long paths increment path field in database up to 4000 (maximum for Oracle - otherwise we could use php's 4096) increment version to trigger database migration adding unit test for too long path # This is the 2nd commit message: fix too long path
2013-12-18Add index on oc_appconfig for appidRobin Appelman
2013-11-27Fix spacing.Andreas Fischer
2013-11-27db-doc: privatedata descriptionAndreas Fischer
2013-11-27db-doc: vcategory* descriptionsAndreas Fischer
2013-11-27db-doc: users descriptionAndreas Fischer
2013-11-27db-doc: jobs descriptionAndreas Fischer
2013-11-27db-doc: share descriptionAndreas Fischer
2013-11-27db-doc: properties descriptionAndreas Fischer
2013-11-27db-doc: preferences descriptionAndreas Fischer
2013-11-27db-doc: locks descriptionAndreas Fischer
2013-11-27db-doc: groups descriptionAndreas Fischer
2013-11-26db-doc: group_admin reduction noteAndreas Fischer
2013-11-26db-doc: group_admin descriptionAndreas Fischer
2013-11-26db-doc: group_user descriptionAndreas Fischer