Manager: drop the job_storage_infos database table

GORM Automigration created a separate `job_storage_infos` table (because
we used it wrong, to be fair), which is actually only used as an
embedded struct in the `jobs` table. This means this table itself can be
dropped.
This commit is contained in:
Sybren A. Stüvel 2023-12-14 10:01:14 +01:00
parent a65f234bea
commit acc9499f2a

@ -0,0 +1,9 @@
-- GORM Automigration created a separate `job_storage_infos` table (because we
-- used it wrong, to be fair), which is actually only used as an embedded struct
-- in the `jobs` table. This means this table can be dropped.
--
-- +goose Up
DROP TABLE `job_storage_infos`;
-- +goose Down
CREATE TABLE `job_storage_infos` (`shaman_checkout_id` varchar(255) DEFAULT "");