mirror of https://github.com/apache/cloudstack.git
Add 2.1.3 migration step
This commit is contained in:
parent
896eac1742
commit
18956dc3c2
|
|
@ -150,6 +150,11 @@ class From21datamigratedTo21postprocessed(cloud_utils.MigrationStep):
|
|||
to_level = "2.1"
|
||||
def run(self): self.context.run_sql_resource("postprocess-20to21.sql")
|
||||
|
||||
class From21To213(cloud_utils.MigrationStep):
|
||||
def __str__(self): return "Dropping obsolete indexes"
|
||||
from_level = "2.1"
|
||||
to_level = "2.1.3"
|
||||
def run(self): self.context.run_sql_resource("index-212to213.sql")
|
||||
|
||||
# command line harness functions
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue