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