blob: 85f8b1449184f8e797ebc2cabc52097da00646d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
create table typology (
uuid uuid primary key,
configuration jsonb not null,
id text generated always as (
configuration->>'id'
) stored,
version text generated always as (
configuration->>'version'
) stored,
unique (id, version)
);
|