"""computers plugin: baseline schema Creates every table owned by the computers plugin per shopdb.plugins.alembic_template.PLUGIN_TABLE_OWNERS. The table definitions are derived from the SQLAlchemy models at migration runtime so this stays in lockstep with the model layer without duplication. Revision ID: 0001_baseline_computers Revises: Create Date: 2026-05-30 """ from shopdb.plugins.alembic_template import create_plugin_tables, drop_plugin_tables revision = '0001_baseline_computers' down_revision = None branch_labels = None depends_on = None def upgrade(): create_plugin_tables('computers') def downgrade(): drop_plugin_tables('computers')