Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
48f1f961
Unverified
Commit
48f1f961
authored
4 years ago
by
Joas Schilling
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #24039 from nextcloud/faster-installation
Installation goes brrrr
parents
0c7bed26
77713ab4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/private/DB/MigrationService.php
+46
-0
46 additions, 0 deletions
lib/private/DB/MigrationService.php
lib/private/Installer.php
+2
-2
2 additions, 2 deletions
lib/private/Installer.php
lib/private/Setup/AbstractDatabase.php
+1
-1
1 addition, 1 deletion
lib/private/Setup/AbstractDatabase.php
with
49 additions
and
3 deletions
lib/private/DB/MigrationService.php
+
46
−
0
View file @
48f1f961
...
@@ -124,6 +124,11 @@ class MigrationService {
...
@@ -124,6 +124,11 @@ class MigrationService {
return
false
;
return
false
;
}
}
if
(
$this
->
connection
->
tableExists
(
'migrations'
))
{
$this
->
migrationTableCreated
=
true
;
return
false
;
}
$schema
=
new
SchemaWrapper
(
$this
->
connection
);
$schema
=
new
SchemaWrapper
(
$this
->
connection
);
/**
/**
...
@@ -408,6 +413,11 @@ class MigrationService {
...
@@ -408,6 +413,11 @@ class MigrationService {
* @throws \InvalidArgumentException
* @throws \InvalidArgumentException
*/
*/
public
function
migrate
(
$to
=
'latest'
,
$schemaOnly
=
false
)
{
public
function
migrate
(
$to
=
'latest'
,
$schemaOnly
=
false
)
{
if
(
$schemaOnly
)
{
$this
->
migrateSchemaOnly
(
$to
);
return
;
}
// read known migrations
// read known migrations
$toBeExecuted
=
$this
->
getMigrationsToExecute
(
$to
);
$toBeExecuted
=
$this
->
getMigrationsToExecute
(
$to
);
foreach
(
$toBeExecuted
as
$version
)
{
foreach
(
$toBeExecuted
as
$version
)
{
...
@@ -415,6 +425,42 @@ class MigrationService {
...
@@ -415,6 +425,42 @@ class MigrationService {
}
}
}
}
/**
* Applies all not yet applied versions up to $to
*
* @param string $to
* @throws \InvalidArgumentException
*/
public
function
migrateSchemaOnly
(
$to
=
'latest'
)
{
// read known migrations
$toBeExecuted
=
$this
->
getMigrationsToExecute
(
$to
);
if
(
empty
(
$toBeExecuted
))
{
return
;
}
$toSchema
=
null
;
foreach
(
$toBeExecuted
as
$version
)
{
$instance
=
$this
->
createInstance
(
$version
);
$toSchema
=
$instance
->
changeSchema
(
$this
->
output
,
function
()
use
(
$toSchema
)
{
return
$toSchema
?:
new
SchemaWrapper
(
$this
->
connection
);
},
[
'tablePrefix'
=>
$this
->
connection
->
getPrefix
()])
?:
$toSchema
;
$this
->
markAsExecuted
(
$version
);
}
if
(
$toSchema
instanceof
SchemaWrapper
)
{
$targetSchema
=
$toSchema
->
getWrappedSchema
();
if
(
$this
->
checkOracle
)
{
$beforeSchema
=
$this
->
connection
->
createSchema
();
$this
->
ensureOracleIdentifierLengthLimit
(
$beforeSchema
,
$targetSchema
,
strlen
(
$this
->
connection
->
getPrefix
()));
}
$this
->
connection
->
migrateToSchema
(
$targetSchema
);
$toSchema
->
performDropTableCalls
();
}
}
/**
/**
* Get the human readable descriptions for the migration steps to run
* Get the human readable descriptions for the migration steps to run
*
*
...
...
This diff is collapsed.
Click to expand it.
lib/private/Installer.php
+
2
−
2
View file @
48f1f961
...
@@ -154,7 +154,7 @@ class Installer {
...
@@ -154,7 +154,7 @@ class Installer {
}
}
}
else
{
}
else
{
$ms
=
new
\OC\DB\MigrationService
(
$info
[
'id'
],
\OC
::
$server
->
getDatabaseConnection
());
$ms
=
new
\OC\DB\MigrationService
(
$info
[
'id'
],
\OC
::
$server
->
getDatabaseConnection
());
$ms
->
migrate
();
$ms
->
migrate
(
'latest'
,
true
);
}
}
if
(
$previousVersion
)
{
if
(
$previousVersion
)
{
OC_App
::
executeRepairSteps
(
$appId
,
$info
[
'repair-steps'
][
'post-migration'
]);
OC_App
::
executeRepairSteps
(
$appId
,
$info
[
'repair-steps'
][
'post-migration'
]);
...
@@ -589,7 +589,7 @@ class Installer {
...
@@ -589,7 +589,7 @@ class Installer {
}
}
}
else
{
}
else
{
$ms
=
new
\OC\DB\MigrationService
(
$app
,
\OC
::
$server
->
getDatabaseConnection
());
$ms
=
new
\OC\DB\MigrationService
(
$app
,
\OC
::
$server
->
getDatabaseConnection
());
$ms
->
migrate
();
$ms
->
migrate
(
'latest'
,
true
);
}
}
//run appinfo/install.php
//run appinfo/install.php
...
...
This diff is collapsed.
Click to expand it.
lib/private/Setup/AbstractDatabase.php
+
1
−
1
View file @
48f1f961
...
@@ -150,6 +150,6 @@ abstract class AbstractDatabase {
...
@@ -150,6 +150,6 @@ abstract class AbstractDatabase {
return
;
return
;
}
}
$ms
=
new
MigrationService
(
'core'
,
\OC
::
$server
->
getDatabaseConnection
());
$ms
=
new
MigrationService
(
'core'
,
\OC
::
$server
->
getDatabaseConnection
());
$ms
->
migrate
();
$ms
->
migrate
(
'latest'
,
true
);
}
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment