mirror of
https://github.com/PerpetualSoftware/pad.git
synced 2026-09-25 03:42:06 +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
9 lines
247 B
SQL
9 lines
247 B
SQL
UPDATE collections
|
|
SET schema = json_set(
|
|
schema,
|
|
'$.fields[#]',
|
|
json('{"key":"phase","label":"Phase","type":"relation","collection":"phases"}')
|
|
)
|
|
WHERE slug = 'tasks'
|
|
AND json_extract(schema, '$.fields') NOT LIKE '%"key":"phase"%';
|