mirror of
https://github.com/PerpetualSoftware/pad.git
synced 2026-09-21 01:53:33 +00:00
81579847c6
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
4 lines
191 B
SQL
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;
|