Files
Memoh/db/migrations/0026_snapshot_display_name.up.sql
T
BBQ 21999b49f4 feat(container): add explicit data workflows and snapshot rollback (#193)
* feat(container): add explicit data workflows and snapshot rollback

Make container upgrades and recreation data-safe by adding explicit preserve, export, import, restore, and rollback flows across the backend, SDK, and web UI.

* fix(container): resolve go lint issues

Fix formatting and lint violations introduced by the container data workflow changes so the Go CI lint job passes cleanly.
2026-03-06 17:57:48 +08:00

7 lines
222 B
SQL

-- 0026_snapshot_display_name
-- Add user-facing display_name to snapshots while keeping runtime_snapshot_name
-- as the internal containerd identifier.
ALTER TABLE snapshots
ADD COLUMN IF NOT EXISTS display_name TEXT;