summaryrefslogtreecommitdiffstats
path: root/core/command/db
Commit message (Collapse)AuthorAgeFilesLines
* Remove remainings of mssqlThomas Müller2015-07-291-5/+0
|
* Scrutinizer Auto-FixesScrutinizer Auto-Fixer2015-05-191-1/+0
| | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* Update license headersJenkins for ownCloud2015-03-262-9/+40
|
* Revert "Updating license headers"Morris Jobke2015-02-262-39/+11
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-232-11/+39
|
* naming fixes while reviewingThomas Müller2015-01-261-5/+5
|
* Use setConfigs() instead of calling setConfig() multiple timesJoas Schilling2015-01-231-5/+7
|
* Use a special filter expression for Oracle to filter the prefix - fixes #13220Thomas Müller2015-01-121-1/+2
|
* add default for dbtableprefixMorris Jobke2014-12-231-1/+1
|
* use injected config object and fix typosMorris Jobke2014-12-221-1/+1
|
* Use Doctrines filter by table nametbelau6662014-12-221-0/+2
| | | | | | | 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 objectMorris Jobke2014-11-201-14/+14
|
* Enhance question in DB migration scriptunclejamal30002014-11-021-1/+1
|
* Add message about unsupported Microsoft SQL Server.Andreas Fischer2014-05-091-0/+5
|
* Store normalised DBMS type in $type.Andreas Fischer2014-05-091-2/+2
|
* Pass Connection instead of AbstractSchemaManager to clearSchema().Andreas Fischer2014-04-151-8/+5
|
* Use exceptions for in input validation.Andreas Fischer2014-04-151-12/+9
|
* Do not block when nothing is passed via stdin.Andreas Fischer2014-04-151-1/+4
|
* Do not ask for password before input parameter validation.Andreas Fischer2014-04-151-15/+30
|
* Remove unnecessary sprintf.Andreas Fischer2014-04-151-8/+2
|
* Move (extended) input validation out into validateInput() method.Andreas Fischer2014-04-151-12/+19
|
* Add message for converting to SQLite being unsupported.Andreas Fischer2014-04-151-0/+7
|
* Use a variable for the DBMS tyoe we are converting to.Andreas Fischer2014-04-151-4/+5
|
* Move PostgreSQL sequence resynchronisation out into PgSqlTools class.Andreas Fischer2014-04-141-13/+4
|
* Add error handling for --clear-schema on Oracle.Andreas Fischer2014-04-141-0/+11
|
* Do not quote table names on Oracle. They appear to be already quoted.Andreas Fischer2014-04-141-5/+9
| | | | | | | | | | Without this commit, Oracle complains as follows: [Doctrine\DBAL\DBALException] An exception occurred while executing 'INSERT INTO "oc_appconfig" ("""appid""", """configkey""", """configvalue""") VALUES (?, ?, ?)' with params ["core", "installedat", "1396972927.537"]: ORA-01741: illegal zero-length identifier
* Remove unnecessary +1 from PostgreSQL sequence correction query.Andreas Fischer2014-04-111-1/+1
|
* Better variable names for table arrays.Andreas Fischer2014-04-111-5/+5
|
* Improve message about tables not going to be converted. Mention --all-apps ↵Andreas Fischer2014-04-111-1/+6
| | | | option.
* Extract schema creation code into its own method.Andreas Fischer2014-04-091-9/+13
|
* Add option to create all app schemas instead of just installed app.Andreas Fischer2014-04-091-1/+7
|
* Do not attempt to covert to the same DBMS.Andreas Fischer2014-04-091-0/+8
|
* Move schema clearing to extra method.Andreas Fischer2014-04-091-8/+13
|
* private -> protectedAndreas Fischer2014-04-091-5/+5
|
* typos fixedThomas Müller2014-04-011-2/+5
| | | | PHPDoc comments added
* Type hinting.Andreas Fischer2014-03-311-6/+10
|
* Some more colors.Andreas Fischer2014-03-311-2/+2
|
* Deduplicate connection handling code into \OC\DB\ConnectionFactoryAndreas Fischer2014-03-311-31/+14
|
* Remove unnecessary and incorrect comments.Andreas Fischer2014-03-311-8/+1
|
* \InvalidArgumentException is in root namespace.Andreas Fischer2014-03-311-1/+1
|
* Doc blocks for properties do not repeat the property name.Andreas Fischer2014-03-311-1/+1
|
* Use question color.Andreas Fischer2014-03-311-1/+1
|
* Remove whitespace at end of lines.Andreas Fischer2014-03-311-1/+1
|
* Merge remote-tracking branch 'owncloud/master' into db-convert-toolAndreas Fischer2014-03-311-1/+0
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * owncloud/master: (663 commits) [tx-robot] updated from transifex [tx-robot] updated from transifex Sub-dir was prepended twice Sub-dir was prepended twice [tx-robot] updated from transifex Use UrlGenerator in OC\Util::redirectToDefaultPage(). Fix #7936 Emit event after setting a new expiration for a share adding @method annotation to declare methods which can be called on the wrapped statement object Fix CURLOPT_FOLLOWLOCATION bug with open_basedir or safe_mode restriction enabled. don't write file if opening a stream to encrypt the data fails Do not retrieve storage stats for trash bin [tx-robot] updated from transifex prevent dimmed ocdialog div from scrolling fix breadcrumbs for IE8 enable SVG->PNG fallback for 'New' menu enable SVG->PNG fallback for newly uploaded files and folders specify logo to not repeat when container is bigger fix SVG replacement for logo so it works in IE8, fix #7866 Fix swift touch operation [tx-robot] updated from transifex ... Conflicts: 3rdparty
| * Scrutinizer Auto-FixesScrutinizer Auto-Fixer2014-02-191-1/+0
| | | | | | | | | | | | | | | | | | | | | | This patch was automatically generated as part of the following inspection: https://scrutinizer-ci.com/g/owncloud/core/inspections/cdfecc4e-a37e-4233-8025-f0d7252a8720 Enabled analysis tools: - PHP Analyzer - JSHint - PHP Copy/Paste Detector - PHP PDepend
* | Move password interaction to interact functionBart Visscher2014-02-171-12/+14
| |
* | Split execute function into multiple functionsBart Visscher2014-02-171-69/+89
| |
* | Fix namespace for ExceptionBart Visscher2014-02-121-1/+1
| |
* | Allow converting from any db typeBart Visscher2014-02-111-11/+4
| |
* | Check target DB typeBart Visscher2014-02-111-0/+3
| |