Fix failing outdated tests

This commit is contained in:
fabianlindfors 2024-01-20 02:08:13 +01:00
parent c55b7ced5f
commit 55998ba65f
2 changed files with 4 additions and 4 deletions

View File

@ -308,8 +308,8 @@ fn add_column_with_complex_up() {
[actions.up]
table = "users"
value = "email"
where = "user_id = id"
value = "users.email"
where = "profiles.user_id = users.id"
"#,
);

View File

@ -179,8 +179,8 @@ fn remove_column_with_complex_down() {
[actions.down]
table = "profiles"
value = "email"
where = "id = user_id"
value = "profiles.email"
where = "users.id = profiles.user_id"
"#,
);