Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add datatype for is_spent sqlite column #713

Merged

Commits on Aug 29, 2022

  1. Add datatype for is_spent sqlite column

    Although, Sqlite column accepts
    values of any type, it is
    important to annotate this column
    to make it easy to reason about.
    vladimirfomene committed Aug 29, 2022
    Configuration menu
    Copy the full SHA
    369e17b View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2022

  1. Sqlite migrations should either succeed or fail

    The current implementation of the `migrate` method for
    Sqlite database does not rollback changes when there is
    an error while running one of the migration scripts. This
    can leave the database in an inconsistent state. This
    change ensures that migrations either succeed completely
    or fail.
    vladimirfomene committed Sep 16, 2022
    Configuration menu
    Copy the full SHA
    54d7684 View commit details
    Browse the repository at this point in the history