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,5 @@
-- Add 'aur' to repository check constraint
ALTER TABLE packages DROP CONSTRAINT IF EXISTS packages_repository_check;
ALTER TABLE packages
ADD CONSTRAINT packages_repository_check
CHECK (repository IN ('official','third-party','aur'));