From 362a716150e40c4fb7a11a7487fb618a2cd25a4e Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Thu, 3 Apr 2025 09:46:24 +0100 Subject: feat(filamento): caps 2.0 helper functions --- filamento/migrations/20240113011930_luz.sql | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'filamento/migrations') diff --git a/filamento/migrations/20240113011930_luz.sql b/filamento/migrations/20240113011930_luz.sql index 3b56664..c2b5a97 100644 --- a/filamento/migrations/20240113011930_luz.sql +++ b/filamento/migrations/20240113011930_luz.sql @@ -129,3 +129,10 @@ create table cached_status ( ); insert into cached_status (id) values (0); + +create table capability_hash_nodes ( + node text primary key not null, + timestamp text not null, + -- TODO: normalization + capabilities text not null +); -- cgit