aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/db/migrator.php
Commit message (Collapse)AuthorAgeFilesLines
* Move \OC\DB to PSR-4Roeland Jago Douma2016-04-151-292/+0
| | | | | Besides the statement wrapper that is moved to the legacy folder (namepsace of shame folder)
* Fix verbose output of upgrade command - not progressbar in this case and the ↵Thomas Müller2016-04-041-3/+18
| | | | schema migration test has one progressbar now for all tables - before we had one progressbar for each table
* Show individual sql schema migration steps during upgrade - on web as well ↵Thomas Müller2016-04-041-3/+23
| | | | as on the command line
* Scrutinizer Auto-FixesScrutinizer Auto-Fixer2016-01-151-1/+1
| | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* Happy new year!Thomas Müller2016-01-121-1/+1
|
* update license headers and authorsMorris Jobke2015-06-251-0/+1
|
* Do not use digits in random index namesVictor Dubiniuk2015-06-081-1/+1
|
* Update license headersJenkins for ownCloud2015-03-261-4/+22
|
* replace 'oc_' with dbtableprefix form config for temporary table names and ↵martin-rueegg2015-03-031-2/+2
| | | | indexes
* Revert "Updating license headers"Morris Jobke2015-02-261-21/+5
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-5/+21
|
* Use a special filter expression for Oracle to filter the prefix - fixes #13220Thomas Müller2015-01-121-4/+9
|
* add default for dbtableprefixMorris Jobke2014-12-231-2/+2
|
* use injected config object and fix typosMorris Jobke2014-12-221-3/+3
|
* inject \OCP\IConfig instance in migratorMorris Jobke2014-12-221-1/+7
|
* Use Doctrines filter by table nametbelau6662014-12-221-1/+5
| | | | | | | Doctrine's SchemaManager can filter table names by regular expression. On this way it picks up only ownClouds's tables in a database. by tbelau666
* Special treatment for OracleThomas Müller2014-10-161-5/+24
|
* only commit in case a transaction is activeThomas Müller2014-07-231-1/+3
|
* Use get random bytes as uniqeid() is not unique in some casesJoas Schilling2014-06-301-2/+2
| | | | Fix #9161
* Do not rename primary key index when renaming tableVincent Petry2014-06-171-1/+7
| | | | | | | When the migrator renames a table, for example for upgrade simulation, it should not rename the primary key to avoid messing up with the diff because the MySQL Doctrine code expects that index to always be called "primary".
* Better unique names for temporary tablesRobin Appelman2014-06-031-1/+11
|
* Only quote identifiers for oracle during migrationRobin Appelman2014-06-031-10/+1
|
* Try and check migration before applying itRobin Appelman2014-06-031-10/+36
|
* Check sqlite migration on a copy of the database fileRobin Appelman2014-06-031-0/+1
|
* Fix migrator for postgresRobin Appelman2014-06-031-1/+3
|
* Fix temporary schema creationRobin Appelman2014-06-031-4/+8
|
* Fix generating migration test schemasRobin Appelman2014-06-031-1/+4
|
* Create unique names for temporary indexesRobin Appelman2014-06-031-3/+23
|
* Add a mechanism to try the database migration on a copy of the tables before ↵Robin Appelman2014-06-031-0/+139
running it on the "real" data