Skip to content

Commit

Permalink
feat: sql script
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruslan Garifullin committed Apr 23, 2023
1 parent 0038e0d commit 8530cba
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions misc/sql/make_user_admin.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
UPDATE user_entity
SET "hasAdministratorCapabilities"=True
WHERE "id"=4;

UPDATE user_entity
SET "hasModeratorCapabilities"=True
WHERE "id"=4;

UPDATE user_entity
SET "password"='123'
WHERE "id"=4;

0 comments on commit 8530cba

Please sign in to comment.