aboutsummaryrefslogtreecommitdiff
path: root/sqitch/deploy/change_nar_urls_size_to_bigint.sql
blob: 4b6fdf3a8cdeb7447b7ac8a8d650637cbfc25c88 (plain)
1
2
3
4
5
6
7
-- Deploy guix-data-service:change_nar_urls_size_to_bigint to pg

BEGIN;

ALTER TABLE nar_urls ALTER COLUMN file_size TYPE bigint USING file_size::bigint;

COMMIT;