mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-20 10:31:17 +00:00
4c8a727e9e
Stores their name, website, and credentials
10 lines
261 B
SQL
Executable file
10 lines
261 B
SQL
Executable file
-- Your SQL goes here
|
|
CREATE TABLE apps (
|
|
id SERIAL PRIMARY KEY,
|
|
name TEXT NOT NULL DEFAULT '',
|
|
client_id TEXT NOT NULL,
|
|
client_secret TEXT NOT NULL,
|
|
redirect_uri TEXT,
|
|
website TEXT,
|
|
creation_date TIMESTAMP NOT NULL DEFAULT now()
|
|
);
|