Skip to content

Instantly share code, notes, and snippets.

View zprobst's full-sized avatar

Zach Probst zprobst

View GitHub Profile

Keybase proof

I hereby claim:

  • I am zprobst on github.
  • I am zprobst (https://keybase.io/zprobst) on keybase.
  • I have a public key ASCh76f4t5Kvqa7ji1v0zJO1jf8ziKXUUsJXtE6uj09r9Qo

To claim this, I am signing this object:

@zprobst
zprobst / commands.sql
Created April 1, 2021 18:30
commands.sql
USE ouath;
CREATE TABLE oauth_clients (
client_id VARCHAR(80) NOT NULL,
client_secret VARCHAR(80),
redirect_uri VARCHAR(2000),
grant_types VARCHAR(80),
scope VARCHAR(4000),
user_id VARCHAR(80),
PRIMARY KEY (client_id)