@package-broker/main 0.11.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
-- Add is_manual_upload flag to packages table
|
|
2
|
+
-- This field marks packages that were manually uploaded vs synced from repositories
|
|
3
|
+
|
|
4
|
+
ALTER TABLE packages ADD COLUMN is_manual_upload INTEGER DEFAULT 0 NOT NULL;
|
|
5
|
+
|
|
6
|
+
-- Index for filtering manual uploads
|
|
7
|
+
CREATE INDEX idx_packages_manual_upload ON packages(is_manual_upload);
|
|
8
|
+
|