made drag and dropable page, it is saving positions in database and localstorage. in this commit I also upload sql file of the table I created.

This commit is contained in:
2024-09-25 01:10:34 +04:00
parent 5ff66c5e3a
commit b9ee06121a
3 changed files with 234 additions and 85 deletions
+32
View File
@@ -0,0 +1,32 @@
/*
Navicat Premium Dump SQL
Source Server : local
Source Server Type : MySQL
Source Server Version : 100432 (10.4.32-MariaDB)
Source Host : localhost:3306
Source Schema : reportifynew
Target Server Type : MySQL
Target Server Version : 100432 (10.4.32-MariaDB)
File Encoding : 65001
Date: 25/09/2024 01:08:34
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for auth_chart_order
-- ----------------------------
DROP TABLE IF EXISTS `auth_chart_order`;
CREATE TABLE `auth_chart_order` (
`id` int NOT NULL,
`user_id` int NULL DEFAULT NULL,
`order` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`insert_date` datetime NULL DEFAULT current_timestamp ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
SET FOREIGN_KEY_CHECKS = 1;