buster/api/migrations/2024-11-19-195358_add_entit.../up.sql

8 lines
280 B
SQL

-- Your SQL goes here
create table entity_relationship (
primary_dataset_id uuid not null,
foreign_dataset_id uuid not null,
relationship_type text not null,
created_at timestamptz not null default now(),
primary key (primary_dataset_id, foreign_dataset_id)
);