From 2c00b74cc02b55e26d68fef108596aae56080d5a Mon Sep 17 00:00:00 2001 From: Martin Kagamino Lehoux Date: Sat, 8 Aug 2026 10:05:05 +0200 Subject: feat: Persist Cotacol ride values --- db/migrations/20260807000000_ride_cotacol.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 db/migrations/20260807000000_ride_cotacol.sql (limited to 'db/migrations') diff --git a/db/migrations/20260807000000_ride_cotacol.sql b/db/migrations/20260807000000_ride_cotacol.sql new file mode 100644 index 0000000..44e3a81 --- /dev/null +++ b/db/migrations/20260807000000_ride_cotacol.sql @@ -0,0 +1,7 @@ +-- migrate:up +alter table rides add column cotacol_score real; +alter table rides add column cotacol_algo_version text; + +-- migrate:down +alter table rides drop column cotacol_algo_version; +alter table rides drop column cotacol_score; -- cgit v1.2.3