forked from openlp/openlp
Fix bug #1136278 by trying to detect when an upgrade has already been performed.
bzr-revno: 2191 Fixes: https://launchpad.net/bugs/1136278
This commit is contained in:
commit
3aed29094f
@ -37,6 +37,7 @@ from sqlalchemy import Table, func, select, insert
|
|||||||
__version__ = 1
|
__version__ = 1
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
def upgrade_setup(metadata):
|
def upgrade_setup(metadata):
|
||||||
"""
|
"""
|
||||||
Set up the latest revision all tables, with reflection, needed for the
|
Set up the latest revision all tables, with reflection, needed for the
|
||||||
@ -61,6 +62,8 @@ def upgrade_1(session, metadata, tables):
|
|||||||
metadata_table = metadata.tables[u'metadata']
|
metadata_table = metadata.tables[u'metadata']
|
||||||
# Copy "Version" to "name" ("version" used by upgrade system)
|
# Copy "Version" to "name" ("version" used by upgrade system)
|
||||||
# TODO: Clean up in a subsequent release of OpenLP (like 2.0 final)
|
# TODO: Clean up in a subsequent release of OpenLP (like 2.0 final)
|
||||||
|
if select([metadata_table.c.value], metadata_table.c.key == u'Version')\
|
||||||
|
.as_scalar().execute().fetchall():
|
||||||
session.execute(insert(metadata_table).values(
|
session.execute(insert(metadata_table).values(
|
||||||
key=u'name',
|
key=u'name',
|
||||||
value=select(
|
value=select(
|
||||||
@ -70,6 +73,8 @@ def upgrade_1(session, metadata, tables):
|
|||||||
))
|
))
|
||||||
# Copy "Copyright" to "copyright"
|
# Copy "Copyright" to "copyright"
|
||||||
# TODO: Clean up in a subsequent release of OpenLP (like 2.0 final)
|
# TODO: Clean up in a subsequent release of OpenLP (like 2.0 final)
|
||||||
|
if select([metadata_table.c.value], metadata_table.c.key == u'Copyright')\
|
||||||
|
.as_scalar().execute().fetchall():
|
||||||
session.execute(insert(metadata_table).values(
|
session.execute(insert(metadata_table).values(
|
||||||
key=u'copyright',
|
key=u'copyright',
|
||||||
value=select(
|
value=select(
|
||||||
@ -79,6 +84,8 @@ def upgrade_1(session, metadata, tables):
|
|||||||
))
|
))
|
||||||
# Copy "Permissions" to "permissions"
|
# Copy "Permissions" to "permissions"
|
||||||
# TODO: Clean up in a subsequent release of OpenLP (like 2.0 final)
|
# TODO: Clean up in a subsequent release of OpenLP (like 2.0 final)
|
||||||
|
if select([metadata_table.c.value], metadata_table.c.key == u'Permissions')\
|
||||||
|
.as_scalar().execute().fetchall():
|
||||||
session.execute(insert(metadata_table).values(
|
session.execute(insert(metadata_table).values(
|
||||||
key=u'permissions',
|
key=u'permissions',
|
||||||
value=select(
|
value=select(
|
||||||
|
@ -30,18 +30,24 @@
|
|||||||
The :mod:`upgrade` module provides a way for the database and schema that is the
|
The :mod:`upgrade` module provides a way for the database and schema that is the
|
||||||
backend for the Songs plugin
|
backend for the Songs plugin
|
||||||
"""
|
"""
|
||||||
|
import logging
|
||||||
|
|
||||||
from sqlalchemy import Column, Table, types
|
from sqlalchemy import Column, Table, types
|
||||||
|
from sqlalchemy.exc import NoSuchTableError, OperationalError
|
||||||
from sqlalchemy.sql.expression import func
|
from sqlalchemy.sql.expression import func
|
||||||
from migrate.changeset.constraint import ForeignKeyConstraint
|
from migrate.changeset.constraint import ForeignKeyConstraint
|
||||||
|
|
||||||
|
log = logging.getLogger(__name__)
|
||||||
__version__ = 3
|
__version__ = 3
|
||||||
|
|
||||||
|
|
||||||
def upgrade_setup(metadata):
|
def upgrade_setup(metadata):
|
||||||
"""
|
"""
|
||||||
Set up the latest revision all tables, with reflection, needed for the
|
Set up the latest revision all tables, with reflection, needed for the
|
||||||
upgrade process. If you want to drop a table, you need to remove it from
|
upgrade process. If you want to drop a table, you need to remove it from
|
||||||
here, and add it to your upgrade function.
|
here, and add it to your upgrade function.
|
||||||
|
|
||||||
|
:param metadata: The SQLAlchemy metadata object
|
||||||
"""
|
"""
|
||||||
tables = {
|
tables = {
|
||||||
u'authors': Table(u'authors', metadata, autoload=True),
|
u'authors': Table(u'authors', metadata, autoload=True),
|
||||||
@ -66,7 +72,12 @@ def upgrade_1(session, metadata, tables):
|
|||||||
In order to facilitate this one-to-many relationship, a song_id column is
|
In order to facilitate this one-to-many relationship, a song_id column is
|
||||||
added to the media_files table, and a weight column so that the media
|
added to the media_files table, and a weight column so that the media
|
||||||
files can be ordered.
|
files can be ordered.
|
||||||
|
|
||||||
|
:param session: An SQLAlchemy Session object
|
||||||
|
:param metadata: An SQLAlchemy MetaData object
|
||||||
|
:param tables: A dictionary of tables
|
||||||
"""
|
"""
|
||||||
|
try:
|
||||||
Table(u'media_files_songs', metadata, autoload=True).drop(checkfirst=True)
|
Table(u'media_files_songs', metadata, autoload=True).drop(checkfirst=True)
|
||||||
Column(u'song_id', types.Integer(), default=None)\
|
Column(u'song_id', types.Integer(), default=None)\
|
||||||
.create(table=tables[u'media_files'])
|
.create(table=tables[u'media_files'])
|
||||||
@ -76,6 +87,8 @@ def upgrade_1(session, metadata, tables):
|
|||||||
# SQLite doesn't support ALTER TABLE ADD CONSTRAINT
|
# SQLite doesn't support ALTER TABLE ADD CONSTRAINT
|
||||||
ForeignKeyConstraint([u'song_id'], [u'songs.id'],
|
ForeignKeyConstraint([u'song_id'], [u'songs.id'],
|
||||||
table=tables[u'media_files']).create()
|
table=tables[u'media_files']).create()
|
||||||
|
except (NoSuchTableError, OperationalError):
|
||||||
|
log.info(u'Upgrade 1 has already been run, continue with upgrade')
|
||||||
|
|
||||||
|
|
||||||
def upgrade_2(session, metadata, tables):
|
def upgrade_2(session, metadata, tables):
|
||||||
@ -83,11 +96,18 @@ def upgrade_2(session, metadata, tables):
|
|||||||
Version 2 upgrade.
|
Version 2 upgrade.
|
||||||
|
|
||||||
This upgrade adds a create_date and last_modified date to the songs table
|
This upgrade adds a create_date and last_modified date to the songs table
|
||||||
|
|
||||||
|
:param session: An SQLAlchemy Session object
|
||||||
|
:param metadata: An SQLAlchemy MetaData object
|
||||||
|
:param tables: A dictionary of tables
|
||||||
"""
|
"""
|
||||||
|
try:
|
||||||
Column(u'create_date', types.DateTime(), default=func.now())\
|
Column(u'create_date', types.DateTime(), default=func.now())\
|
||||||
.create(table=tables[u'songs'])
|
.create(table=tables[u'songs'])
|
||||||
Column(u'last_modified', types.DateTime(), default=func.now())\
|
Column(u'last_modified', types.DateTime(), default=func.now())\
|
||||||
.create(table=tables[u'songs'])
|
.create(table=tables[u'songs'])
|
||||||
|
except OperationalError:
|
||||||
|
log.info(u'Upgrade 2 has already been run, continue with upgrade')
|
||||||
|
|
||||||
|
|
||||||
def upgrade_3(session, metadata, tables):
|
def upgrade_3(session, metadata, tables):
|
||||||
@ -95,7 +115,13 @@ def upgrade_3(session, metadata, tables):
|
|||||||
Version 3 upgrade.
|
Version 3 upgrade.
|
||||||
|
|
||||||
This upgrade adds a temporary song flag to the songs table
|
This upgrade adds a temporary song flag to the songs table
|
||||||
|
|
||||||
|
:param session: An SQLAlchemy Session object
|
||||||
|
:param metadata: An SQLAlchemy MetaData object
|
||||||
|
:param tables: A dictionary of tables
|
||||||
"""
|
"""
|
||||||
|
try:
|
||||||
Column(u'temporary', types.Boolean(), default=False)\
|
Column(u'temporary', types.Boolean(), default=False)\
|
||||||
.create(table=tables[u'songs'])
|
.create(table=tables[u'songs'])
|
||||||
|
except OperationalError:
|
||||||
|
log.info(u'Upgrade 3 has already been run, continue with upgrade')
|
||||||
|
@ -30,11 +30,15 @@
|
|||||||
The :mod:`upgrade` module provides a way for the database and schema that is the
|
The :mod:`upgrade` module provides a way for the database and schema that is the
|
||||||
backend for the SongsUsage plugin
|
backend for the SongsUsage plugin
|
||||||
"""
|
"""
|
||||||
|
import logging
|
||||||
|
|
||||||
from sqlalchemy import Column, Table, types
|
from sqlalchemy import Column, Table, types
|
||||||
|
from sqlalchemy.exc import OperationalError
|
||||||
|
|
||||||
|
log = logging.getLogger(__name__)
|
||||||
__version__ = 1
|
__version__ = 1
|
||||||
|
|
||||||
|
|
||||||
def upgrade_setup(metadata):
|
def upgrade_setup(metadata):
|
||||||
"""
|
"""
|
||||||
Set up the latest revision all tables, with reflection, needed for the
|
Set up the latest revision all tables, with reflection, needed for the
|
||||||
@ -53,7 +57,10 @@ def upgrade_1(session, metadata, tables):
|
|||||||
|
|
||||||
This upgrade adds two new fields to the songusage database
|
This upgrade adds two new fields to the songusage database
|
||||||
"""
|
"""
|
||||||
|
try:
|
||||||
Column(u'plugin_name', types.Unicode(20), default=u'') \
|
Column(u'plugin_name', types.Unicode(20), default=u'') \
|
||||||
.create(table=tables[u'songusage_data'], populate_default=True)
|
.create(table=tables[u'songusage_data'], populate_default=True)
|
||||||
Column(u'source', types.Unicode(10), default=u'') \
|
Column(u'source', types.Unicode(10), default=u'') \
|
||||||
.create(table=tables[u'songusage_data'], populate_default=True)
|
.create(table=tables[u'songusage_data'], populate_default=True)
|
||||||
|
except OperationalError:
|
||||||
|
log.info(u'Upgrade 1 has already been run, continue with upgrade')
|
||||||
|
Loading…
Reference in New Issue
Block a user