Files
stripstream-librarian/infra/migrations/0065_add_torrent_progress.sql
Froidefond Julien ac53bd950b
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 55s
chore: bump version to 2.12.1
2026-03-26 21:46:58 +01:00

5 lines
204 B
SQL

ALTER TABLE torrent_downloads
ADD COLUMN progress REAL NOT NULL DEFAULT 0,
ADD COLUMN download_speed BIGINT NOT NULL DEFAULT 0,
ADD COLUMN eta BIGINT NOT NULL DEFAULT 0;