From 99058d19c3bc7a7c65d225eac2b89bd915d3249d Mon Sep 17 00:00:00 2001 From: haras Date: Sat, 15 Mar 2025 17:45:22 +0100 Subject: [PATCH] 2020-08-02-025025 patch fix --- .../2020-08-02-025025_add_favorites_table/down.sql | 12 ------------ .../2020-08-02-025025_add_favorites_table/up.sql | 10 ---------- .../down.sql | 11 +++++++++++ .../2020-08-02-025026_add_favorites_table_fix/up.sql | 9 +++++++++ 4 files changed, 20 insertions(+), 22 deletions(-) create mode 100644 migrations/postgresql/2020-08-02-025026_add_favorites_table_fix/down.sql create mode 100644 migrations/postgresql/2020-08-02-025026_add_favorites_table_fix/up.sql diff --git a/migrations/postgresql/2020-08-02-025025_add_favorites_table/down.sql b/migrations/postgresql/2020-08-02-025025_add_favorites_table/down.sql index 25eb713b..c79a61de 100644 --- a/migrations/postgresql/2020-08-02-025025_add_favorites_table/down.sql +++ b/migrations/postgresql/2020-08-02-025025_add_favorites_table/down.sql @@ -1,13 +1 @@ -ALTER TABLE ciphers -ADD COLUMN favorite BOOLEAN NOT NULL DEFAULT FALSE; - --- Transfer favorite status for user-owned ciphers. -UPDATE ciphers -SET favorite = TRUE -WHERE EXISTS ( - SELECT * FROM favorites - WHERE favorites.user_uuid = ciphers.user_uuid - AND favorites.cipher_uuid = ciphers.uuid -); - DROP TABLE favorites; diff --git a/migrations/postgresql/2020-08-02-025025_add_favorites_table/up.sql b/migrations/postgresql/2020-08-02-025025_add_favorites_table/up.sql index 9a8787f9..d5a02bfa 100644 --- a/migrations/postgresql/2020-08-02-025025_add_favorites_table/up.sql +++ b/migrations/postgresql/2020-08-02-025025_add_favorites_table/up.sql @@ -4,13 +4,3 @@ CREATE TABLE favorites ( PRIMARY KEY (user_uuid, cipher_uuid) ); - --- Transfer favorite status for user-owned ciphers. -INSERT INTO favorites(user_uuid, cipher_uuid) -SELECT user_uuid, uuid -FROM ciphers -WHERE favorite = TRUE - AND user_uuid IS NOT NULL; - -ALTER TABLE ciphers -DROP COLUMN favorite; diff --git a/migrations/postgresql/2020-08-02-025026_add_favorites_table_fix/down.sql b/migrations/postgresql/2020-08-02-025026_add_favorites_table_fix/down.sql new file mode 100644 index 00000000..af5669fa --- /dev/null +++ b/migrations/postgresql/2020-08-02-025026_add_favorites_table_fix/down.sql @@ -0,0 +1,11 @@ +ALTER TABLE ciphers +ADD COLUMN favorite BOOLEAN NOT NULL DEFAULT FALSE; + +-- Transfer favorite status for user-owned ciphers. +UPDATE ciphers +SET favorite = TRUE +WHERE EXISTS ( + SELECT * FROM favorites + WHERE favorites.user_uuid = ciphers.user_uuid + AND favorites.cipher_uuid = ciphers.uuid +); diff --git a/migrations/postgresql/2020-08-02-025026_add_favorites_table_fix/up.sql b/migrations/postgresql/2020-08-02-025026_add_favorites_table_fix/up.sql new file mode 100644 index 00000000..af67e7b5 --- /dev/null +++ b/migrations/postgresql/2020-08-02-025026_add_favorites_table_fix/up.sql @@ -0,0 +1,9 @@ +-- Transfer favorite status for user-owned ciphers. +INSERT INTO favorites(user_uuid, cipher_uuid) +SELECT user_uuid, uuid +FROM ciphers +WHERE favorite = TRUE + AND user_uuid IS NOT NULL; + +ALTER TABLE ciphers +DROP COLUMN favorite;