initial commit
[squeep-indie-auther] / src / db / postgres / sql / scopes-insert.sql
1 -- Insert an externally-provided scope, or ignore.
2 INSERT INTO scope
3 (scope)
4 SELECT
5 unnest(${scopes})
6 ON CONFLICT (scope) DO NOTHING