Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Do not use digits in random index names | Victor Dubiniuk | 2015-06-09 | 1 | -1/+1 |
| | |||||
* | replace 'oc_' with dbtableprefix form config for temporary table names and ↵ | martin-rueegg | 2015-05-18 | 1 | -2/+2 |
| | | | | indexes | ||||
* | Use a special filter expression for Oracle to filter the prefix - fixes #13220 | Thomas Müller | 2015-01-12 | 1 | -4/+9 |
| | |||||
* | add default for dbtableprefix | Morris Jobke | 2014-12-23 | 1 | -2/+2 |
| | |||||
* | use injected config object and fix typos | Morris Jobke | 2014-12-22 | 1 | -3/+3 |
| | |||||
* | inject \OCP\IConfig instance in migrator | Morris Jobke | 2014-12-22 | 1 | -1/+7 |
| | |||||
* | Use Doctrines filter by table name | tbelau666 | 2014-12-22 | 1 | -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 Oracle | Thomas Müller | 2014-10-16 | 1 | -5/+24 |
| | |||||
* | only commit in case a transaction is active | Thomas Müller | 2014-07-23 | 1 | -1/+3 |
| | |||||
* | Use get random bytes as uniqeid() is not unique in some cases | Joas Schilling | 2014-06-30 | 1 | -2/+2 |
| | | | | Fix #9161 | ||||
* | Do not rename primary key index when renaming table | Vincent Petry | 2014-06-17 | 1 | -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 tables | Robin Appelman | 2014-06-03 | 1 | -1/+11 |
| | |||||
* | Only quote identifiers for oracle during migration | Robin Appelman | 2014-06-03 | 1 | -10/+1 |
| | |||||
* | Try and check migration before applying it | Robin Appelman | 2014-06-03 | 1 | -10/+36 |
| | |||||
* | Check sqlite migration on a copy of the database file | Robin Appelman | 2014-06-03 | 1 | -0/+1 |
| | |||||
* | Fix migrator for postgres | Robin Appelman | 2014-06-03 | 1 | -1/+3 |
| | |||||
* | Fix temporary schema creation | Robin Appelman | 2014-06-03 | 1 | -4/+8 |
| | |||||
* | Fix generating migration test schemas | Robin Appelman | 2014-06-03 | 1 | -1/+4 |
| | |||||
* | Create unique names for temporary indexes | Robin Appelman | 2014-06-03 | 1 | -3/+23 |
| | |||||
* | Add a mechanism to try the database migration on a copy of the tables before ↵ | Robin Appelman | 2014-06-03 | 1 | -0/+139 |
running it on the "real" data |