mirror of https://github.com/itflow-org/itflow
DB Structure fix
This commit is contained in:
parent
603d677dfd
commit
6019a4d1be
20
db.sql
20
db.sql
|
|
@ -1,8 +1,8 @@
|
|||
-- MariaDB dump 10.19 Distrib 10.11.4-MariaDB, for debian-linux-gnu (x86_64)
|
||||
-- MariaDB dump 10.19 Distrib 10.11.6-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: itflow_dev
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.4-MariaDB-1~deb12u1
|
||||
-- Server version 10.11.6-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
|
|
@ -1042,20 +1042,20 @@ CREATE TABLE `recurring_expenses` (
|
|||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table remember_tokens
|
||||
-- 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`)
|
||||
`remember_token_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`remember_token_token` varchar(255) NOT NULL,
|
||||
`remember_token_user_id` int(11) NOT NULL,
|
||||
`remember_token_created_at` datetime NOT NULL DEFAULT current_timestamp(),
|
||||
PRIMARY KEY (`remember_token_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `revenues`
|
||||
|
|
@ -1784,4 +1784,4 @@ CREATE TABLE `vendors` (
|
|||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2024-02-10 15:26:19
|
||||
-- Dump completed on 2024-02-23 23:44:31
|
||||
|
|
|
|||
Loading…
Reference in New Issue