Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 823 Bytes

db-schema.md

File metadata and controls

19 lines (11 loc) · 823 Bytes

Jpa Db schema

mandatory tables

These tables are mandatory and will be generated by Jpa auto ddl.

  • oauth_code: id, client_key, code, reg_date, scopes_string, upd_date, user_name
  • oauth_regist: id, authorize_response, client_key, notification_type, oauth_user_json, redirect_url, reg_date, token, upd_date
  • oauth_token: id, client_key, old_refresh_token, refresh_token, reg_date, scopes_string, token, type, upd_date, user_name

User and User Avatar table.

These tables can be replaced with existing user information tables.

We provide default tables generated by Jpa auto ddl, as flow:

  • my_user_table: id, meta_data_string, reg_date, upd_date, user_name, user_password
  • my_avatar_table: id, content_type, data, user_name