dc.target-node-directory-sql.0.10.1.source-code.target-node-directory-schema.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of target-node-directory-sql Show documentation
Show all versions of target-node-directory-sql Show documentation
edc :: target-node-directory-sql
The newest version!
/*
* Copyright (c) 2024 Amadeus IT Group
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* Amadeus IT Group - initial API and implementation
*
*/
-- only intended for and tested with Postgres!
CREATE TABLE IF NOT EXISTS edc_target_node_directory
(
id VARCHAR PRIMARY KEY NOT NULL,
name VARCHAR NOT NULL,
target_url VARCHAR NOT NULL,
supported_protocols JSON
);
COMMENT ON COLUMN edc_target_node_directory.supported_protocols IS 'List serialized as JSON';
© 2015 - 2024 Weber Informatics LLC | Privacy Policy