Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eduGAIN Technical Site
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
edugain
eduGAIN OT
eduGAIN Technical Site
Commits
5c7aa62d
Commit
5c7aa62d
authored
1 year ago
by
Tomasz Wolniewicz
Browse files
Options
Downloads
Patches
Plain Diff
adding the temporary_entity_sha1
parent
9d760301
No related branches found
No related tags found
1 merge request
!17
Updates for sha comparisons
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
database/edugain_schema.sql
+25
-10
25 additions, 10 deletions
database/edugain_schema.sql
with
25 additions
and
10 deletions
database/edugain_schema.sql
+
25
−
10
View file @
5c7aa62d
-- MySQL dump 10.14 Distrib 5.5.68-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: edugain
_twoln
-- Host: localhost Database: edugain
-- ------------------------------------------------------
-- Server version 5.5.68-MariaDB
...
...
@@ -51,7 +51,7 @@ CREATE TABLE `cert` (
PRIMARY
KEY
(
`id`
),
KEY
`sha1`
(
`sha1`
),
KEY
`sha256`
(
`sha256`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
25
0
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
25
6
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
/*!40101 SET character_set_client = @saved_cs_client */
;
--
...
...
@@ -104,7 +104,7 @@ CREATE TABLE `entities` (
PRIMARY
KEY
(
`id`
),
UNIQUE
KEY
`entityid`
(
`entityid`
),
KEY
`regauth`
(
`regauth`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
39362
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
100804
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
/*!40101 SET character_set_client = @saved_cs_client */
;
--
...
...
@@ -136,7 +136,7 @@ CREATE TABLE `entities_status` (
`rands_cnt`
smallint
(
6
)
DEFAULT
NULL
,
`sirtfi2_idp_cnt`
smallint
(
6
)
DEFAULT
NULL
,
`sirtfi2_sp_cnt`
smallint
(
6
)
DEFAULT
NULL
,
`sirtfi2_cnt`
smallint
(
6
)
DEFAULT
NULL
`sirtfi2_cnt`
smallint
(
6
)
DEFAULT
NULL
,
`coco2_idp_cnt`
smallint
(
6
)
DEFAULT
NULL
,
`coco2_sp_cnt`
smallint
(
6
)
DEFAULT
NULL
,
`coco2_cnt`
smallint
(
6
)
DEFAULT
NULL
,
...
...
@@ -203,7 +203,7 @@ CREATE TABLE `entity_contactperson` (
`subtypeschema`
char
(
128
)
COLLATE
utf8_unicode_ci
DEFAULT
NULL
,
`subtype`
char
(
64
)
COLLATE
utf8_unicode_ci
DEFAULT
NULL
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
105013
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
434399
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
/*!40101 SET character_set_client = @saved_cs_client */
;
--
...
...
@@ -415,7 +415,7 @@ CREATE TABLE `entity_roles` (
PRIMARY
KEY
(
`id`
),
UNIQUE
KEY
`entity_id`
(
`entity_id`
,
`roledesc`
),
KEY
`roledesc`
(
`roledesc`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
57738
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
174137
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
/*!40101 SET character_set_client = @saved_cs_client */
;
--
...
...
@@ -479,7 +479,7 @@ CREATE TABLE `entityattributes_dict` (
`short`
char
(
30
)
COLLATE
utf8_unicode_ci
DEFAULT
NULL
,
PRIMARY
KEY
(
`id`
),
UNIQUE
KEY
`name`
(
`name`
,
`value`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
20
5
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
20
7
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
/*!40101 SET character_set_client = @saved_cs_client */
;
--
...
...
@@ -494,7 +494,7 @@ CREATE TABLE `entitywarnings_dict` (
`message`
char
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
PRIMARY
KEY
(
`id`
),
UNIQUE
KEY
`message`
(
`message`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
6
1
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
6
3
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
/*!40101 SET character_set_client = @saved_cs_client */
;
--
...
...
@@ -724,7 +724,7 @@ CREATE TABLE `person` (
`role`
char
(
15
)
COLLATE
utf8_unicode_ci
DEFAULT
NULL
,
`code`
char
(
20
)
COLLATE
utf8_unicode_ci
DEFAULT
NULL
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
1991
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
2015
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
/*!40101 SET character_set_client = @saved_cs_client */
;
--
...
...
@@ -806,6 +806,21 @@ CREATE TABLE `security_contact` (
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
/*!40101 SET character_set_client = @saved_cs_client */
;
--
-- Table structure for table `temporary_entity_sha1`
--
DROP
TABLE
IF
EXISTS
`temporary_entity_sha1`
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!40101 SET character_set_client = utf8 */
;
CREATE
TABLE
`temporary_entity_sha1`
(
`entityid`
char
(
255
)
CHARACTER
SET
utf8
COLLATE
utf8_bin
NOT
NULL
,
`sha1`
char
(
50
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`modtime`
datetime
DEFAULT
NULL
,
UNIQUE
KEY
`entityid`
(
`entityid`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
/*!40101 SET character_set_client = @saved_cs_client */
;
--
-- Final view structure for view `federation_v`
--
...
...
@@ -834,4 +849,4 @@ CREATE TABLE `security_contact` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */
;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */
;
-- Dump completed on 202
3
-0
7-25 21:24
:5
8
-- Dump completed on 202
4
-0
2-16 11:39
:5
1
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment