diff options
author | 2025-04-03 13:20:29 +0100 | |
---|---|---|
committer | 2025-04-03 13:20:29 +0100 | |
commit | f48642bbd5a210b68e60715b59b1f24cf2d77fea (patch) | |
tree | 4316bbb8355cc1dfd66a22dde480a49e9158ec59 /filamento/migrations | |
parent | bf00184a09418750caeb488d8d71f9dc7afd7aff (diff) | |
download | luz-f48642bbd5a210b68e60715b59b1f24cf2d77fea.tar.gz luz-f48642bbd5a210b68e60715b59b1f24cf2d77fea.tar.bz2 luz-f48642bbd5a210b68e60715b59b1f24cf2d77fea.zip |
feat(filamento): caps 1.0
Diffstat (limited to '')
-rw-r--r-- | filamento/migrations/20240113011930_luz.sql | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/filamento/migrations/20240113011930_luz.sql b/filamento/migrations/20240113011930_luz.sql index c2b5a97..8c1b01c 100644 --- a/filamento/migrations/20240113011930_luz.sql +++ b/filamento/migrations/20240113011930_luz.sql @@ -132,7 +132,9 @@ insert into cached_status (id) values (0); create table capability_hash_nodes ( node text primary key not null, - timestamp text not null, + timestamp text, -- TODO: normalization capabilities text not null ); + +insert into capability_hash_nodes ( node, capabilities ) values ('https://bunny.garden/filamento#mSavc/SLnHm8zazs5RlcbD/iXoc=', 'aHR0cDovL2phYmJlci5vcmcvcHJvdG9jb2wvY2Fwcx9odHRwOi8vamFiYmVyLm9yZy9wcm90b2NvbC9kaXNjbyNpbmZvH2h0dHA6Ly9qYWJiZXIub3JnL3Byb3RvY29sL2Rpc2NvI2l0ZW1zH2h0dHA6Ly9qYWJiZXIub3JnL3Byb3RvY29sL25pY2sfaHR0cDovL2phYmJlci5vcmcvcHJvdG9jb2wvbmljaytub3RpZnkfHGNsaWVudB9wYx8fZmlsYW1lbnRvIDAuMS4wHx4cHA=='); |