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

Added auto-migration based on operation tracking approach #1136

Merged
merged 4 commits into from
Oct 14, 2021

Commits on Oct 12, 2021

  1. Added auto-migration based on operation tracking approach

    Every time a table, we save the CREATE TABLE statement to Application/Migration/unmigrated-changes.sql. Same for new columns and other changes in the future.
    
    When a new migration is generated, we take all the SQL statements in Application/Migration/unmigrated-changes.sql as the starting point for the new migration.
    mpscholten committed Oct 12, 2021
    Configuration menu
    Copy the full SHA
    8179f62 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2021

  1. Configuration menu
    Copy the full SHA
    73436b1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2956c82 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    506d6e4 View commit details
    Browse the repository at this point in the history