Added migrations to update command #114
This commit is contained in:
11
src/cpl_cli/migrations/migration_2022_10.py
Normal file
11
src/cpl_cli/migrations/migration_2022_10.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from cpl_cli.migrations.base.migration_abc import MigrationABC
|
||||
|
||||
|
||||
class Migration202210(MigrationABC):
|
||||
|
||||
def __init__(self):
|
||||
MigrationABC.__init__(self, '2022.10')
|
||||
|
||||
def migrate(self):
|
||||
# This migration could be deleted, but stays as an example.
|
||||
pass
|
Reference in New Issue
Block a user