-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Isabel Kiefer
authored and
Isabel Kiefer
committed
Nov 22, 2023
1 parent
5dbecde
commit 24279ce
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* ALTER TABLE signalo_db.vl_user_sign | ||
ADD column img text, | ||
ADD column value text; | ||
UPDATE signalo_db.vl_user_sign set img = coalesce(img_fr, img_de, img_it, img_ro, NULL); | ||
UPDATE signalo_db.vl_user_sign set value = coalesce(value_fr, value_de, value_it, value_ro, NULL); | ||
ALTER TABLE signalo_db.vl_user_sign | ||
DROP column img_fr, | ||
DROP column value_fr, | ||
DROP column img_de, | ||
DROP column value_de, | ||
DROP column img_it, | ||
DROP column value_it, | ||
DROP column img_ro, | ||
DROP column value_ro; | ||
*/ |