Skip to content

Commit 9698f76

Browse files
committed
Forgot password Sql
1 parent e159d54 commit 9698f76

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The main objective is to speed up web development effort by providing configurab
1010

1111
- Support Laravel equivalent
1212
- Support Route naming conventions
13-
- User Login Registration
13+
- Admin Login
1414
- Forget Password
1515
- Message Helpers (success., info, warning, error)
1616
- Responsive Design With Bootstrap based HTML template.

database/password_resets.sql

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
CREATE TABLE `password_resets` (
2+
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
3+
`token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
4+
`created_at` timestamp NULL DEFAULT NULL
5+
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
6+
7+
ALTER TABLE `password_resets`
8+
ADD KEY `password_resets_email_index` (`email`),
9+
ADD KEY `password_resets_token_index` (`token`);

0 commit comments

Comments
 (0)