mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
f17aa20bd7
Instead of delegating to the migration the task of increasing the model version, do it implicitly as part of the `migrate` function.
13 lines
364 B
Python
13 lines
364 B
Python
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
|
|
from revng.model.migrations import MigrationBase
|
|
|
|
|
|
class Migration(MigrationBase):
|
|
def migrate(self, model):
|
|
for function in model.get("Functions", {}):
|
|
for index, comment in enumerate(function.get("Comments", [])):
|
|
comment["Index"] = index
|