removed server settings scheme

master
Alex 2021-06-12 13:40:04 +02:00
parent c6240a0578
commit 4ef3d96ec7
1 changed files with 0 additions and 27 deletions

View File

@ -58,30 +58,3 @@ CREATE TABLE `sessions` (
`last_login` datetime NOT NULL,
`expires` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `server_settings`
--
CREATE TABLE `server_settings` (
`name` varchar(50) NOT NULL,
`value` varchar(50) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `server_settings`
--
INSERT INTO `server_settings` (`name`, `value`, `created_at`, `updated_at`) VALUES
('expired_time', '72', '2021-05-28 19:18:12', NULL),
('username_min_len', '3', '2021-06-06 17:27:38', NULL),
('username_max_len', '30', '2021-06-06 17:40:39', NULL),
('email_min_len', '3', '2021-06-06 17:41:01', NULL),
('email_max_len', '255', '2021-06-06 17:41:31', NULL),
('password_min_len', '6', '2021-06-06 17:41:50', NULL),
('password_max_len', '250', '2021-06-06 17:42:01', NULL);
COMMIT;