Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move \OC\DB to PSR-4 | Roeland Jago Douma | 2016-04-15 | 1 | -178/+0 |
| | | | | | Besides the statement wrapper that is moved to the legacy folder (namepsace of shame folder) | ||||
* | Show individual sql schema migration steps during upgrade - on web as well ↵ | Thomas Müller | 2016-04-04 | 1 | -9/+10 |
| | | | | as on the command line | ||||
* | Scrutinizer Auto-Fixes | Scrutinizer Auto-Fixer | 2016-02-05 | 1 | -2/+1 |
| | | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com | ||||
* | Happy new year! | Thomas Müller | 2016-01-12 | 1 | -2/+2 |
| | |||||
* | getMediumStrengthGenerator is deprecated and does not do anything anymore | Roeland Jago Douma | 2016-01-11 | 1 | -1/+1 |
| | |||||
* | OC_DB_MDB2SchemaManager -> OC\DB\MDB2SchemaManager | Morris Jobke | 2016-01-07 | 1 | -1/+1 |
| | |||||
* | Remove remainings of mssql | Thomas Müller | 2015-07-29 | 1 | -3/+0 |
| | |||||
* | Update license headers | Jenkins for ownCloud | 2015-03-26 | 1 | -4/+24 |
| | |||||
* | let insertIfNotExist() throw the native DBALException - no need to hide the ↵ | Thomas Müller | 2015-03-09 | 1 | -1/+1 |
| | | | | real exception | ||||
* | Revert "Updating license headers" | Morris Jobke | 2015-02-26 | 1 | -24/+5 |
| | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36. | ||||
* | Updating license headers | Jenkins for ownCloud | 2015-02-23 | 1 | -5/+24 |
| | |||||
* | inject \OCP\IConfig instance in migrator | Morris Jobke | 2014-12-22 | 1 | -6/+6 |
| | |||||
* | Use Doctrines filter by table name | tbelau666 | 2014-12-22 | 1 | -3/+1 |
| | | | | | | | 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 | ||||
* | drop dependency of some commands on old config object | Morris Jobke | 2014-11-20 | 1 | -3/+3 |
| | |||||
* | Fix PHPDoc and remove explicit type hint | Lukas Reschke | 2014-10-24 | 1 | -2/+2 |
| | |||||
* | Add type hinting to functions | Lukas Reschke | 2014-10-24 | 1 | -1/+1 |
| | | | | It's only reasonable to have proper type hinting here which might even help us to catch bugs. | ||||
* | Merge pull request #10985 from owncloud/db-cleanup | Thomas Müller | 2014-10-23 | 1 | -2/+3 |
|\ | | | | | Cleanup database handling | ||||
| * | Bit more cleanup | Robin Appelman | 2014-10-22 | 1 | -2/+3 |
| | | |||||
* | | Special treatment for Oracle | Thomas Müller | 2014-10-16 | 1 | -6/+7 |
|/ | |||||
* | Disable database migrations for MSSQL - scripts have to be applied manually | Thomas Müller | 2014-09-15 | 1 | -0/+3 |
| | |||||
* | generate copy of sqlite database file in data directory | Thomas Müller | 2014-07-28 | 1 | -1/+2 |
| | |||||
* | - Added test to trigger index id error | Vincent Petry | 2014-07-14 | 1 | -2/+4 |
| | | | | | - re-enable encryption migration tests - sqlite requires reconnect after schema changes | ||||
* | Fix migrator tests to use the correct migrator instances | Vincent Petry | 2014-07-01 | 1 | -1/+1 |
| | |||||
* | adding PK to table encryption | Thomas Müller | 2014-06-06 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | adding auto increment/PK to table files_trash adding PK to table ldap_user_mapping and ldap_group_members adding PK to table ldap_group_mapping truncate permissions table to allow smooth creation of primary key adding unit test for creating an auto increment column on a table which already contains data remove unneeded table files_trashsizes fix unit test no need to truncate *PREFIX*permissions On Oracle adding auto increment columns is not working out of the box - Oracle migrations are to be done manually | ||||
* | Removed simulate db update flag and split into separate methods | Vincent Petry | 2014-06-04 | 1 | -12/+25 |
| | |||||
* | Simulate apps database schema update on upgrade | Vincent Petry | 2014-06-04 | 1 | -3/+8 |
| | | | | | When upgrade, also simulate the database schema update for apps before doing the actual upgrade. | ||||
* | Add `generateChangeScript()` back | Robin Appelman | 2014-06-03 | 1 | -0/+9 |
| | |||||
* | Quote identifiers on mysql | Robin Appelman | 2014-06-03 | 1 | -1/+3 |
| | |||||
* | Skip migration checks for all sql backends besides mysql, postgres and sqlite | Robin Appelman | 2014-06-03 | 1 | -1/+5 |
| | |||||
* | Only quote identifiers for oracle during migration | Robin Appelman | 2014-06-03 | 1 | -16/+17 |
| | |||||
* | Try and check migration before applying it | Robin Appelman | 2014-06-03 | 1 | -50/+29 |
| | |||||
* | - fix dropTable() and introduce tableExists() | Thomas Müller | 2014-05-30 | 1 | -34/+0 |
| | | | | | | | - kill replaceDB() - this function is unused and it's implementation obviously wrong - add method annotation OC_DB_StatementWrapper::fetchAll - remove duplicate code in Test_DBSchema and reuse OC_DB::tableExists - remove unused variables | ||||
* | Remove all occurences of @brief and @returns from PHPDoc | Morris Jobke | 2014-05-19 | 1 | -6/+6 |
| | | | | * test case added to avoid adding them later | ||||
* | Fix all PHPDoc types and variable names, in /lib | Robin McCorkell | 2014-05-13 | 1 | -1/+1 |
| | |||||
* | Also quote old column name during DB migration | Vincent Petry | 2014-02-27 | 1 | -0/+3 |
| | | | | This fixes alter table commands that didn't quote the old column name | ||||
* | polish documentation based on scrutinizer patches | Jörn Friedrich Dreyer | 2014-02-06 | 1 | -1/+1 |
| | |||||
* | on mssql the schema migration sometimes fails due to an already existing ↵ | Thomas Mueller | 2013-11-26 | 1 | -0/+2 |
| | | | | | | transaction - error: 'New transaction is not allowed because there are other threads running in the session.' The solution is to simple reconnect to the database to start with a fresh connection | ||||
* | Use quoteIdentifier with proper objects | Victor Dubiniuk | 2013-10-21 | 1 | -0/+5 |
| | |||||
* | removing pointless calls on quoteIdentifier() - reason: name on $tableDiff ↵ | Thomas Müller | 2013-10-17 | 1 | -6/+2 |
| | | | | | | doesn't exist and my design the name cannot be changed adding PHPDoc | ||||
* | new console command to generate sql migration scripts | Thomas Müller | 2013-10-17 | 1 | -1/+21 |
| | |||||
* | move the private namespace OC into lib/private - OCP will stay in lib/public | Thomas Müller | 2013-09-30 | 1 | -0/+150 |
Conflicts: lib/private/vcategories.php |