Skip to content

Commit

Permalink
Merge pull request #1475 from SURFscz/update-schema-cache
Browse files Browse the repository at this point in the history
Update schema cache
  • Loading branch information
oharsta authored Jun 18, 2024
2 parents b35b7ee + 3b3b918 commit 8ae5949
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions misc/sbs-db.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Dump of empty SBS database, alembic revision c63acd12d7ea (head)
-- Dump of empty SBS database, alembic revision 02350ca4274c (head)

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
Expand All @@ -21,7 +21,7 @@ CREATE TABLE `alembic_version` (

LOCK TABLES `alembic_version` WRITE;
/*!40000 ALTER TABLE `alembic_version` DISABLE KEYS */;
INSERT INTO `alembic_version` VALUES ('c63acd12d7ea');
INSERT INTO `alembic_version` VALUES ('02350ca4274c');
/*!40000 ALTER TABLE `alembic_version` ENABLE KEYS */;
UNLOCK TABLES;
DROP TABLE IF EXISTS `api_keys`;
Expand Down Expand Up @@ -806,6 +806,8 @@ CREATE TABLE `service_requests` (
`status` varchar(255) DEFAULT NULL,
`uuid4` varchar(255) NOT NULL,
`rejection_reason` text,
`grants` text,
`is_public_client` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `service_requests_uuid4` (`uuid4`),
KEY `requester_id` (`requester_id`),
Expand Down Expand Up @@ -884,6 +886,15 @@ CREATE TABLE `services` (
`connection_setting` varchar(255) DEFAULT NULL,
`override_access_allowed_all_connections` tinyint(1) DEFAULT '0',
`ldap_identifier` varchar(255) NOT NULL,
`redirect_urls` text,
`saml_metadata` text,
`saml_metadata_url` varchar(255) DEFAULT NULL,
`oidc_client_secret` varchar(255) DEFAULT NULL,
`providing_organisation` varchar(255) DEFAULT NULL,
`grants` text,
`is_public_client` tinyint(1) DEFAULT '0',
`saml_enabled` tinyint(1) DEFAULT '0',
`oidc_enabled` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `services_unique_entity_id` (`entity_id`),
UNIQUE KEY `services_uuid4` (`uuid4`),
Expand Down

0 comments on commit 8ae5949

Please sign in to comment.