Skip to content

Commit

Permalink
Merge pull request #2098 from undb-io/release/v1.0.0-103
Browse files Browse the repository at this point in the history
Release version v1.0.0-103
  • Loading branch information
nichenqin authored Oct 19, 2024
2 parents e6e67eb + 79f7713 commit 887dfca
Show file tree
Hide file tree
Showing 82 changed files with 2,917 additions and 159 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v1.0.0-103


### 🚀 Enhancements

- Dashboard on field deleted ([691cff2](https://github.com/undb-io/undb/commit/691cff2))

### ❤️ Contributors

- Nichenqin ([@nichenqin](http://github.com/nichenqin))

## v1.0.0-102


Expand Down
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 887dfca

Please sign in to comment.