From 507c28f268fa0a9997ea477aa932c2c580b834e3 Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Wed, 28 Feb 2024 08:46:32 -0500 Subject: [PATCH] alembic: Synchronize alembic heads between supported branches. This adds a dummy migration to 18 and 20 so that our alembic heads are synchronized across all supported branches. In this case the migration we are stubbing (24c12d8e9014) is: https://github.com/asterisk/asterisk/commit/775352ee6c2a5bcd4f0e3df51aee5d1b0abf4cbe (cherry picked from commit d122225279eeee12c6511ffaf91439841bb763c3) --- .../versions/24c12d8e9014_dummy_migration.py | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 contrib/ast-db-manage/config/versions/24c12d8e9014_dummy_migration.py diff --git a/contrib/ast-db-manage/config/versions/24c12d8e9014_dummy_migration.py b/contrib/ast-db-manage/config/versions/24c12d8e9014_dummy_migration.py new file mode 100644 index 0000000000..bd79c9340d --- /dev/null +++ b/contrib/ast-db-manage/config/versions/24c12d8e9014_dummy_migration.py @@ -0,0 +1,25 @@ +"""dummy migration + +This migration exists to ensure that all currently supported branches +have the same alembic revision head. This makes managing migrations +across supported branches less painful. + +The migration that is stubbed here is: + + https://github.com/asterisk/asterisk/commit/775352ee6c2a5bcd4f0e3df51aee5d1b0abf4cbe + +Revision ID: 24c12d8e9014 +Revises: 37a5332640e2 +Create Date: 2024-01-05 14:14:47.510917 + +""" + +# revision identifiers, used by Alembic. +revision = '24c12d8e9014' +down_revision = '37a5332640e2' + +def upgrade(): + pass + +def downgrade(): + pass