22--
33-- Host: localhost Database: db
44-- ------------------------------------------------------
5- -- Server version 8.1.0
5+ -- Server version 8.1.0
66
77/* !40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */ ;
88/* !40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */ ;
@@ -44,10 +44,38 @@ CREATE TABLE `flyway_schema_history` (
4444
4545LOCK TABLES ` flyway_schema_history` WRITE;
4646/* !40000 ALTER TABLE `flyway_schema_history` DISABLE KEYS */ ;
47- INSERT INTO ` flyway_schema_history` VALUES (1 ,' 0.0.1' ,' initial-migration' ,' SQL' ,' V0_0_1__initial-migration.sql' ,- 1767291177 ,' user' ,' 2025-02-19 11:58:53 ' , 82 ,1 ),(2 ,' 1.0.2' ,' minimal table' ,' SQL' ,' V1_0_2__minimal_table.sql' ,- 454303568 ,' user' ,' 2025-02-19 11:58:53 ' , 54 ,1 );
47+ INSERT INTO ` flyway_schema_history` VALUES (1 ,' 0.0.1' ,' initial-migration' ,' SQL' ,' V0_0_1__initial-migration.sql' ,- 1767291177 ,' user' ,' 2025-08-13 14:51:32 ' , 92 ,1 ),(2 ,' 1.0.2' ,' minimal table' ,' SQL' ,' V1_0_2__minimal_table.sql' ,- 454303568 ,' user' ,' 2025-08-13 14:51:32 ' , 73 , 1 ),( 3 , ' 2.0.0 ' , ' clean tables ' , ' SQL ' , ' V2_0_0__clean_tables.sql ' , - 1059881192 , ' user ' , ' 2025-08-13 14:51:32 ' , 81 , 1 ),( 4 , ' 2.0.1 ' , ' add flat claim flag ' , ' SQL ' , ' V2_0_1__add_flat_claim_flag.sql ' , 485455161 , ' user ' , ' 2025-08-13 14:51:32 ' , 19 ,1 );
4848/* !40000 ALTER TABLE `flyway_schema_history` ENABLE KEYS */ ;
4949UNLOCK TABLES;
5050
51+ --
52+ -- Table structure for table `scope_entry`
53+ --
54+
55+ DROP TABLE IF EXISTS ` scope_entry` ;
56+ /* !40101 SET @saved_cs_client = @@character_set_client */ ;
57+ /* !50503 SET character_set_client = utf8mb4 */ ;
58+ CREATE TABLE `scope_entry ` (
59+ ` id` bigint NOT NULL AUTO_INCREMENT,
60+ ` service_id` varchar (255 ) DEFAULT NULL ,
61+ ` scope_key` varchar (255 ) DEFAULT NULL ,
62+ ` credentials` longtext NOT NULL ,
63+ ` presentation_definition` longtext NOT NULL ,
64+ ` flat_claims` tinyint (1 ) NOT NULL ,
65+ PRIMARY KEY (` id` )
66+ ) ENGINE= InnoDB AUTO_INCREMENT= 2 DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_0900_ai_ci;
67+ /* !40101 SET character_set_client = @saved_cs_client */ ;
68+
69+ --
70+ -- Dumping data for table `scope_entry`
71+ --
72+
73+ LOCK TABLES ` scope_entry` WRITE;
74+ /* !40000 ALTER TABLE `scope_entry` DISABLE KEYS */ ;
75+ INSERT INTO ` scope_entry` VALUES (1 ,' vet' ,' default' ,' [{\" credentialType\" :\" VerifiableCredential\" ,\" verifyHolder\" :false,\" requireCompliance\" :false,\" jwtInclusion\" :{\" enabled\" :true,\" fullInclusion\" :false},\" holderClaim\" :\" subject\" ,\" trustedLists\" :[{\" type\" :\" TRUSTED_ISSUERS\" ,\" listType\" :\" ebsi\" ,\" endpoint\" :\" http://trusted-issuers-list:8080\" }]}]' ,' {}' ,0 );
76+ /* !40000 ALTER TABLE `scope_entry` ENABLE KEYS */ ;
77+ UNLOCK TABLES;
78+
5179--
5280-- Table structure for table `service`
5381--
@@ -57,8 +85,7 @@ DROP TABLE IF EXISTS `service`;
5785/* !50503 SET character_set_client = utf8mb4 */ ;
5886CREATE TABLE `service ` (
5987 ` id` varchar (255 ) NOT NULL ,
60- ` default_oidc_scope` varchar (255 ) NOT NULL ,
61- ` oidc_scopes` longtext NOT NULL ,
88+ ` default_oidc_scope` varchar (255 ) DEFAULT NULL ,
6289 PRIMARY KEY (` id` )
6390) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_0900_ai_ci;
6491/* !40101 SET character_set_client = @saved_cs_client */ ;
@@ -69,7 +96,7 @@ CREATE TABLE `service` (
6996
7097LOCK TABLES ` service` WRITE;
7198/* !40000 ALTER TABLE `service` DISABLE KEYS */ ;
72- INSERT INTO ` service` VALUES (' vet' ,' default' , ' { \" default \" :[{ \" credentialType \" : \" VerifiableCredential \" , \" trustedLists \" :[{ \" type \" : \" TRUSTED_ISSUERS \" , \" listType \" : \" EBSI \" , \" endpoint \" : \" http://trusted-issuers-list:8080 \" }], \" verifyHolder \" :false, \" holderClaim \" : \" subject \" }]} ' );
99+ INSERT INTO ` service` VALUES (' vet' ,' default' );
73100/* !40000 ALTER TABLE `service` ENABLE KEYS */ ;
74101UNLOCK TABLES;
75102/* !40103 SET TIME_ZONE=@OLD_TIME_ZONE */ ;
@@ -82,4 +109,4 @@ UNLOCK TABLES;
82109/* !40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */ ;
83110/* !40111 SET SQL_NOTES=@OLD_SQL_NOTES */ ;
84111
85- -- Dump completed on 2025-02-19 13:12:29
112+ -- Dump completed on 2025-08-13 15:10:13
0 commit comments