reservation.upgrade =================== .. py:module:: reservation.upgrade .. autoapi-nested-parse:: Contains upgrade tasks that are executed when the application is being upgraded on the server. See :class:`onegov.core.upgrade.upgrade_task`. Functions --------- .. autoapisummary:: reservation.upgrade.run_upgrades reservation.upgrade.add_form_definition_field reservation.upgrade.add_resource_group_field reservation.upgrade.add_reservations_allocations_type_field reservation.upgrade.make_reservations_allocations_payable reservation.upgrade.set_defaults_on_existing_reservation_resourcd_objects reservation.upgrade.add_access_token_to_existing_resources reservation.upgrade.add_default_view_to_existing_resource_types reservation.upgrade.make_resource_polymorphic_type_non_nullable Module Contents --------------- .. py:function:: run_upgrades(context: onegov.core.upgrade.UpgradeContext) -> bool onegov.reservation is a bit special because it defines its tables through its own declarative base. This is due to libres requireing its own base. As a consequence, not all applications loaded in the current process have all the tables for all the modules (which is usually the case for all onegov modules using the default onegov.core.orm.Base class). This means we can only run the upgrades if Libres is integrated with the current app. .. py:function:: add_form_definition_field(context: onegov.core.upgrade.UpgradeContext) -> None .. py:function:: add_resource_group_field(context: onegov.core.upgrade.UpgradeContext) -> None .. py:function:: add_reservations_allocations_type_field(context: onegov.core.upgrade.UpgradeContext) -> None .. py:function:: make_reservations_allocations_payable(context: onegov.core.upgrade.UpgradeContext) -> None .. py:function:: set_defaults_on_existing_reservation_resourcd_objects(context: onegov.core.upgrade.UpgradeContext) -> None .. py:function:: add_access_token_to_existing_resources(context: onegov.core.upgrade.UpgradeContext) -> None .. py:function:: add_default_view_to_existing_resource_types(context: onegov.core.upgrade.UpgradeContext) -> None .. py:function:: make_resource_polymorphic_type_non_nullable(context: onegov.core.upgrade.UpgradeContext) -> None