summaryrefslogtreecommitdiff
path: root/db/migrations/20260807000000_ride_cotacol.sql
blob: 44e3a818213f36dae26bf57ede3ad178175c220a (plain) (blame)
1
2
3
4
5
6
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;