Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Commit be56051

Browse files
committed
db migration: new column in sys_user for profie password hash
1 parent 08bded2 commit be56051

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
DO $$
2+
BEGIN
3+
BEGIN
4+
ALTER TABLE sys_user ADD COLUMN profile_password character varying;
5+
EXCEPTION
6+
WHEN duplicate_column THEN RAISE NOTICE 'column profile_password already exists in sys_user.';
7+
END;
8+
END;
9+
$$

0 commit comments

Comments
 (0)