mirror of https://github.com/buster-so/buster.git
8 lines
280 B
MySQL
8 lines
280 B
MySQL
|
-- 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)
|
||
|
);
|