mirror of
https://github.com/willchen96/mike.git
synced 2026-07-14 22:52:13 +02:00
refactor: add table primitive and migrations by date; feat: add mcp connectors
This commit is contained in:
parent
01dfcfe0d4
commit
9a1277ba99
99 changed files with 9344 additions and 2320 deletions
10
backend/migrations/20260423_01_docx_editing_wids.sql
Normal file
10
backend/migrations/20260423_01_docx_editing_wids.sql
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
-- Migration date: 2026-04-23
|
||||
|
||||
-- Migration: persist the actual w:ins / w:del numeric ids alongside the
|
||||
-- logical change_id. Accept/Reject needs these to locate the wrapper
|
||||
-- elements inside document.xml; change_id is our own opaque label and
|
||||
-- never lands in the file.
|
||||
|
||||
ALTER TABLE public.document_edits
|
||||
ADD COLUMN IF NOT EXISTS del_w_id text,
|
||||
ADD COLUMN IF NOT EXISTS ins_w_id text;
|
||||
Loading…
Add table
Add a link
Reference in a new issue