summaryrefslogtreecommitdiffstats
path: root/lib/private/db/migrator.php
Commit message (Collapse)AuthorAgeFilesLines
* Do not use digits in random index namesVictor Dubiniuk2015-06-091-1/+1
|
* replace 'oc_' with dbtableprefix form config for temporary table names and ↵martin-rueegg2015-05-181-2/+2
| | | | indexes
* 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