diff options
Diffstat (limited to 'filamento/migrations/20240113011930_luz.sql')
-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 +); |