refactor: Relocate SQL migration scripts to a dedicated directory and remove deprecated test scripts.

This commit is contained in:
Yusuf İpek
2025-11-22 16:22:38 +03:00
parent 1851ce3f3f
commit 0d3c6cd2ad
5 changed files with 0 additions and 128 deletions
@@ -0,0 +1,10 @@
-- Migration: increase packages.version length to 255
-- Run this against your existing database (PostgreSQL)
ALTER TABLE packages
ALTER COLUMN version TYPE VARCHAR(255);
-- Optional: verify
SELECT column_name, data_type, character_maximum_length
FROM information_schema.columns
WHERE table_name = 'packages' AND column_name = 'version';