added server and realm tabs to inventory screen
This commit is contained in:
parent
ee425e224e
commit
acab2f017d
12 changed files with 647 additions and 151 deletions
|
|
@ -9,9 +9,9 @@ BEGIN
|
|||
FOR v_user IN SELECT id, username FROM auth.users
|
||||
LOOP
|
||||
-- Clear existing data
|
||||
DELETE FROM props.active_avatars WHERE user_id = v_user.id;
|
||||
DELETE FROM props.avatars WHERE user_id = v_user.id;
|
||||
DELETE FROM props.inventory WHERE user_id = v_user.id;
|
||||
DELETE FROM auth.active_avatars WHERE user_id = v_user.id;
|
||||
DELETE FROM auth.avatars WHERE user_id = v_user.id;
|
||||
DELETE FROM auth.inventory WHERE user_id = v_user.id;
|
||||
|
||||
-- Reinitialize with current server props
|
||||
PERFORM auth.initialize_new_user(v_user.id);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue