Files
pad/internal/store/migrations/002_version_diffs.sql
T
xarmian 81579847c6 Initial release
Pad — project management for developers and AI agents.
Single Go binary with embedded SvelteKit web UI, SQLite storage,
CLI, and Claude Code /pad skill integration.

https://getpad.dev
2026-03-26 01:52:36 +00:00

4 lines
191 B
SQL

-- Add is_diff column to versions table.
-- false (0) = content is full text (legacy), true (1) = content is a diff/patch.
ALTER TABLE versions ADD COLUMN is_diff INTEGER NOT NULL DEFAULT 0;