mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
145bd01279
Remove the `__init__` function from the template used by the `revng generate-migrations` command, so far it hasn't been used.
15 lines
293 B
Smarty
15 lines
293 B
Smarty
#
|
|
# 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 comment in comments %}
|
|
{{ comment }}
|
|
{%- endfor %}
|
|
pass
|
|
|