Skip to content

Commit d823062

Browse files
authored
[201811] enable DB migrator code (#536)
Signed-off-by: Ying Xie <[email protected]>
1 parent 7f7f384 commit d823062

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/db_migrator.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ def version_unknown(self):
6868
# here we only intended to migrade to DB version 1.0.1.
6969
# If new DB version is added in the future, the incremental
7070
# upgrade will take care of the subsequent migrations.
71-
# self.migrate_pfc_wd_table()
72-
# self.set_version('version_1_0_1')
73-
# return 'version_1_0_1'
71+
self.migrate_pfc_wd_table()
72+
self.set_version('version_1_0_1')
73+
return 'version_1_0_1'
7474

7575

7676
def version_1_0_1(self):

0 commit comments

Comments
 (0)