"""Alembic env.py for the notifications plugin. Thin shim that sets PLUGIN_NAME then delegates to the shared template at shopdb.plugins.alembic_template, which filters MetaData to only this plugin's tables and runs Alembic against the Flask app's engine. """ import os os.environ['PLUGIN_NAME'] = 'notifications' from shopdb.plugins.alembic_template import run_migrations run_migrations()