mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
Change remember me tokens to a many:many table to allow for multiple devices to be remembered.
This commit is contained in:
16
db.sql
16
db.sql
@@ -1041,6 +1041,22 @@ CREATE TABLE `recurring_expenses` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table remember_tokens
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `remember_tokens`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `remember_tokens` (
|
||||
`remember_token_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`remember_token_user_id` int(10) unsigned NOT NULL,
|
||||
`remember_token_token` varchar(100) NOT NULL,
|
||||
`remember_token_created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
|
||||
|
||||
--
|
||||
-- Table structure for table `revenues`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user