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.
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;
|