-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
ext_tables.sql
43 lines (39 loc) · 1.03 KB
/
ext_tables.sql
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# Table structure for table 'fe_users'
#
CREATE TABLE fe_users (
auth0_user_id varchar(255) DEFAULT '' NOT NULL,
auth0_metadata mediumtext,
auth0_last_application int(11) DEFAULT 0 NOT NULL,
);
#
# Table structure for table 'fe_groups'
#
CREATE TABLE fe_groups (
auth0_user_group varchar(255) DEFAULT '' NOT NULL,
);
#
# 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,
);