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