-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathext_tables.sql
More file actions
27 lines (25 loc) · 722 Bytes
/
ext_tables.sql
File metadata and controls
27 lines (25 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# Table structure for table 'be_users'
#
CREATE TABLE be_users (
auth0_user_id varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'be_groups'
#
CREATE TABLE be_groups (
auth0_user_group varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_auth0_domain_model_application'
#
CREATE TABLE tx_auth0_domain_model_application (
title varchar(255) DEFAULT '' NOT NULL,
single_log_out SMALLINT(5) DEFAULT 1 NOT NULL,
id varchar(255) DEFAULT '' NOT NULL,
secret varchar(255) DEFAULT '' NOT NULL,
domain varchar(255) DEFAULT '' NOT NULL,
audience varchar(255) DEFAULT '' NOT NULL,
signature_algorithm varchar(255) DEFAULT '' NOT NULL,
api SMALLINT(1) DEFAULT 1 NOT NULL,
);