diff options
author | 2025-04-03 09:46:24 +0100 | |
---|---|---|
committer | 2025-04-03 09:46:24 +0100 | |
commit | 362a716150e40c4fb7a11a7487fb618a2cd25a4e (patch) | |
tree | f15ad2f6751180a96e8416fdaedea279be13ab68 /filamento/migrations | |
parent | 9b18e40d8ba5f891e077daa039632f81d5fd2f86 (diff) | |
download | luz-362a716150e40c4fb7a11a7487fb618a2cd25a4e.tar.gz luz-362a716150e40c4fb7a11a7487fb618a2cd25a4e.tar.bz2 luz-362a716150e40c4fb7a11a7487fb618a2cd25a4e.zip |
feat(filamento): caps 2.0 helper functions
Diffstat (limited to '')
-rw-r--r-- | filamento/migrations/20240113011930_luz.sql | 7 |
1 files changed, 7 insertions, 0 deletions
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 +); |