From 84be8b17665ed090f50da7a32915af5a4ca6bd53 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Tue, 25 Jul 2017 15:38:04 -0400 Subject: [PATCH] Set a custom alembic_version for refstack This is the update to the patch by mtreinish that allows for the setting of a custom alembic version_table name. In this patch, the name of this table is set via a new flag in conf. This is the first patch of several that will allow us to build in the ability to collect and upload subunit data to the refstack server. By default, the table is set to be named "alembic_version". Previously, this patch also included some alembic configuration. This has been removed due to the fact that renaming the alembic_version table is not as simple as previously hoped, and will, as a result, require the usage of a migration script. Because of this, I have chosen to sever the two patches, largely, due to the fact that they have separate functionalities, although the migration patch will consume the conf setting created in this patch, so this merging this patch first would be highly advisable. Change-Id: I4c82aabb727694d7cd55aaab339bbc55b1835f27 --- etc/refstack.conf.sample | 5 +++++ refstack/db/api.py | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/etc/refstack.conf.sample b/etc/refstack.conf.sample index 00d6cf32..9d2c1449 100644 --- a/etc/refstack.conf.sample +++ b/etc/refstack.conf.sample @@ -102,6 +102,11 @@ # The backend to use for database. (string value) #db_backend = sqlalchemy +# The alembic version table name to use within the +# database. To allow RefStack to upload and store +# the full set of subunit data. set this option to +# refstack_alembic_version. +#version_table = alembic_table [api] diff --git a/refstack/db/api.py b/refstack/db/api.py index a509f4f3..defd8458 100644 --- a/refstack/db/api.py +++ b/refstack/db/api.py @@ -27,6 +27,12 @@ db_opts = [ cfg.StrOpt('db_backend', default='sqlalchemy', help='The backend to use for database.'), + cfg.StrOpt('version_table', + default='alembic_version', + help='The alembic version table name to use within the ' + + 'database. To allow RefStack to upload and store ' + + 'the full set of subunit data, set this option to ' + + 'refstack_alembic_version.'), ] CONF = cfg.CONF