Skip to content

Commit

Permalink
feat: dashboard on field deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
nichenqin committed Oct 19, 2024
1 parent ff46674 commit 691cff2
Show file tree
Hide file tree
Showing 19 changed files with 2,245 additions and 23 deletions.
7 changes: 7 additions & 0 deletions apps/backend/drizzle/0010_nostalgic_nehzno.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CREATE TABLE `undb_dashboard_table_id_mapping` (
`dashboard_id` text NOT NULL,
`table_id` text NOT NULL,
PRIMARY KEY(`dashboard_id`, `table_id`),
FOREIGN KEY (`dashboard_id`) REFERENCES `undb_dashboard`(`id`) ON UPDATE no action ON DELETE no action,
FOREIGN KEY (`table_id`) REFERENCES `undb_table`(`id`) ON UPDATE no action ON DELETE no action
);
Loading

0 comments on commit 691cff2

Please sign in to comment.