Files
Giacomo Vercesi 6f6cffde3b LocalProvider: add object_id_string to objects
Add the `object_id_string` to the `objects` table. This is for
debugging purposes as it's hard to figure out what is what with binary
objects ids.
2026-05-22 09:04:35 +02:00

10 lines
230 B
SQL

--
-- This file is distributed under the MIT License. See LICENSE.md for details.
--
DELETE FROM objects;
DELETE FROM dependencies;
DELETE FROM custom_dependencies;
ALTER TABLE objects ADD COLUMN object_id_string TEXT NOT NULL;