mirror of
https://github.com/1f349/lavender.git
synced 2025-01-21 22:26:25 +00:00
9 lines
136 B
MySQL
9 lines
136 B
MySQL
|
-- name: AddRole :execlastid
|
||
|
INSERT OR IGNORE INTO roles(role)
|
||
|
VALUES (?);
|
||
|
|
||
|
-- name: RemoveRole :exec
|
||
|
DELETE
|
||
|
FROM roles
|
||
|
WHERE role = ?;
|