mirror of
https://github.com/willchen96/mike.git
synced 2026-06-28 21:49:37 +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/20260517_tabular_review_document_ids.sql
Normal file
12
backend/migrations/20260517_tabular_review_document_ids.sql
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
-- Migration date: 2026-05-17
|
||||
|
||||
-- Persist selected document rows independently from generated cells.
|
||||
-- This lets project-based tabular reviews keep an explicit document list even
|
||||
-- when the review has no columns/cells or all rows have been removed.
|
||||
|
||||
alter table public.tabular_reviews
|
||||
add column if not exists document_ids jsonb;
|
||||
|
||||
alter table public.tabular_reviews
|
||||
alter column document_ids drop not null,
|
||||
alter column document_ids drop default;
|
||||
Loading…
Add table
Add a link
Reference in a new issue