@package-broker/main 0.2.16 → 0.3.2

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.
@@ -1,2 +1,6 @@
1
1
  -- Add file_key column to artifacts table for R2/S3 storage key tracking
2
- ALTER TABLE artifacts ADD COLUMN file_key TEXT;
2
+ -- Note: This column is already included in the initial schema (0001_initial.sql)
3
+ -- This migration is kept for backward compatibility with databases created before file_key was added to initial schema
4
+ -- If the column already exists, this migration will fail but that's safe to ignore
5
+ -- SQLite doesn't support IF NOT EXISTS for ALTER TABLE ADD COLUMN
6
+ -- The migration system will handle the error gracefully
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@package-broker/main",
3
- "version": "0.2.16",
3
+ "version": "0.3.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",