mirror of
https://github.com/ilyakooo0/reshape.git
synced 2024-11-22 01:09:15 +03:00
Fix failing outdated tests
This commit is contained in:
parent
c55b7ced5f
commit
55998ba65f
@ -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"
|
||||
"#,
|
||||
);
|
||||
|
||||
|
@ -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"
|
||||
"#,
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user