mirror of
https://github.com/willchen96/mike.git
synced 2026-06-18 21:15: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
12
backend/migrations/20260603_drop_structure_tree.sql
Normal file
12
backend/migrations/20260603_drop_structure_tree.sql
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
-- Migration date: 2026-06-03
|
||||
|
||||
-- Remove unused document structure trees.
|
||||
--
|
||||
-- Safe to run before or after the document metadata migration because both
|
||||
-- columns are optional and dropped conditionally.
|
||||
|
||||
ALTER TABLE public.document_versions
|
||||
DROP COLUMN IF EXISTS structure_tree;
|
||||
|
||||
ALTER TABLE public.documents
|
||||
DROP COLUMN IF EXISTS structure_tree;
|
||||
Loading…
Add table
Add a link
Reference in a new issue