mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
6f6cffde3b
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.
10 lines
230 B
SQL
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;
|