-
Notifications
You must be signed in to change notification settings - Fork 0
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
Operation branch support #45
Conversation
id INTEGER PRIMARY KEY NOT NULL, | ||
db_uuid TEXT NOT NULL, | ||
name TEXT NOT NULL, | ||
start_operation_id INTEGER, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are foreign keys on operation.id, right? If so please add constraints
UPDATE SET branch_id=excluded.branch_id;", | ||
) | ||
.unwrap(); | ||
println!("setting branc to {branch_name}"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo: branc -> branch
LGTM, comments are non-blocking |
Thanks, ill resolve comments in the apply branch. |
Adds in support for branches and moving between branches. Not in yet is applying changes between branches.