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
MySQL
Raw Permalink Normal View History

2021-12-05 11:56:39 -08:00
-- Up
2021-12-12 15:29:26 -08:00
CREATE TABLE oauth_keys (
2021-12-05 11:56:39 -08:00
instance TEXT NOT NULL PRIMARY KEY,
2021-12-12 15:29:26 -08:00
provider TEXT NOT NULL,
2021-12-05 11:56:39 -08:00
client_id TEXT NOT NULL,
client_secret TEXT NOT NULL
);
-- Down
2021-12-12 15:29:26 -08:00
DROP TABLE oauth_keys;