This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/migrations/043-external-oauth.sql

13 lines
198 B
SQL

-- Up
CREATE TABLE oauth_keys (
instance TEXT NOT NULL PRIMARY KEY,
provider TEXT NOT NULL,
client_id TEXT NOT NULL,
client_secret TEXT NOT NULL
);
-- Down
DROP TABLE oauth_keys;