Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Users can refer to the following example of a table schema to generate the tables for Authorization Server.

Info
title

Example - Table Schema

Code Block
languagesql
CREATE TABLE oauth_scope (
scope       VARCHAR(64) NOT NULL PRIMARY KEY, 
description VARCHAR(128)
);

CREATE TABLE oauth_client ( 
client_name   VARCHAR(128)    NOT NULL PRIMARY KEY, 
client_id     VARCHAR(64)     NOT NULL, 
client_secret VARCHAR(64)     NOT NULL, 
client_scope  VARCHAR(2048)   NOT NULL 
);

...