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:
@@ -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;
|
||||
Reference in New Issue
Block a user