mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-17 13:27:34 +00:00
28 lines
885 B
MySQL
28 lines
885 B
MySQL
|
create schema if not exists cache;
|
||
|
|
||
|
create table if not exists cache.objects (
|
||
|
cache_name varchar not null,
|
||
|
id uuid not null default gen_random_uuid(),
|
||
|
created_at timestamptz not null default now(),
|
||
|
last_used_at timestamptz not null default now(),
|
||
|
payload jsonb not null,
|
||
|
|
||
|
primary key(cache_name, id)
|
||
|
);
|
||
|
|
||
|
create table if not exists cache.string_keys(
|
||
|
cache_name varchar not null check (cache_name <> ''),
|
||
|
index_id integer not null check (index_id > 0),
|
||
|
index_key varchar not null check (index_key <> ''),
|
||
|
object_id uuid not null,
|
||
|
|
||
|
primary key (cache_name, index_id, index_key),
|
||
|
constraint fk_object
|
||
|
foreign key(cache_name, object_id)
|
||
|
references cache.objects(cache_name, id)
|
||
|
on delete cascade
|
||
|
);
|
||
|
|
||
|
create index if not exists string_keys_object_id_idx
|
||
|
on cache.string_keys (cache_name, object_id); -- for delete cascade
|