Skip to content

Commit

Permalink
Merge pull request #1878 from undb-io/release/v1.0.0-11
Browse files Browse the repository at this point in the history
Release version v1.0.0-11
  • Loading branch information
nichenqin authored Aug 15, 2024
2 parents ae580fa + ca0d329 commit 4f034d7
Show file tree
Hide file tree
Showing 16 changed files with 2,449 additions and 72 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Changelog


## v1.0.0-11


### 🩹 Fixes

- Fix route ([2880fee](https://github.com/undb-io/undb/commit/2880fee))

### ❤️ Contributors

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

## v1.0.0-10

## v1.0.0-9
Expand Down
10 changes: 10 additions & 0 deletions apps/backend/drizzle/0001_familiar_joshua_kane.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
CREATE TABLE `undb_password_reset_token` (
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`token` text NOT NULL,
`user_id` text NOT NULL,
`expires_at` integer NOT NULL,
FOREIGN KEY (`user_id`) REFERENCES `undb_user`(`id`) ON UPDATE no action ON DELETE no action
);
--> statement-breakpoint
CREATE UNIQUE INDEX `undb_password_reset_token_token_unique` ON `undb_password_reset_token` (`token`);--> statement-breakpoint
CREATE INDEX `password_reset_token_user_id_idx` ON `undb_password_reset_token` (`user_id`);
Loading

0 comments on commit 4f034d7

Please sign in to comment.