510 lines
13 KiB
SQL
510 lines
13 KiB
SQL
-- phpMyAdmin SQL Dump
|
|
-- version 4.9.1
|
|
-- https://www.phpmyadmin.net/
|
|
--
|
|
-- Host: 127.0.0.1
|
|
-- Generation Time: Oct 06, 2020 at 06:46 AM
|
|
-- Server version: 10.4.8-MariaDB
|
|
-- PHP Version: 7.1.33
|
|
|
|
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
|
|
SET AUTOCOMMIT = 0;
|
|
START TRANSACTION;
|
|
SET time_zone = "+00:00";
|
|
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
/*!40101 SET NAMES utf8mb4 */;
|
|
|
|
--
|
|
-- Database: `traffic`
|
|
--
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `area`
|
|
--
|
|
|
|
CREATE TABLE `area` (
|
|
`id` int(11) NOT NULL,
|
|
`pid` int(11) NOT NULL DEFAULT 0,
|
|
`name` varchar(100) NOT NULL,
|
|
`description` text DEFAULT NULL,
|
|
`status` int(11) NOT NULL DEFAULT 1,
|
|
`created_at` int(11) NOT NULL,
|
|
`modified_at` int(11) NOT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `auth_assignment`
|
|
--
|
|
|
|
CREATE TABLE `auth_assignment` (
|
|
`item_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
|
|
`user_id` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
|
|
`created_at` int(11) DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
|
|
|
--
|
|
-- Dumping data for table `auth_assignment`
|
|
--
|
|
|
|
INSERT INTO `auth_assignment` (`item_name`, `user_id`, `created_at`) VALUES
|
|
('administrator', '1', 1569900053);
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `auth_item`
|
|
--
|
|
|
|
CREATE TABLE `auth_item` (
|
|
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
|
|
`type` smallint(6) NOT NULL,
|
|
`description` text COLLATE utf8_unicode_ci DEFAULT NULL,
|
|
`rule_name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
|
|
`data` blob DEFAULT NULL,
|
|
`created_at` int(11) DEFAULT NULL,
|
|
`updated_at` int(11) DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
|
|
|
--
|
|
-- Dumping data for table `auth_item`
|
|
--
|
|
|
|
INSERT INTO `auth_item` (`name`, `type`, `description`, `rule_name`, `data`, `created_at`, `updated_at`) VALUES
|
|
('administrator', 1, 'Administrator', NULL, NULL, 1535011160, 1535011160);
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `auth_item_child`
|
|
--
|
|
|
|
CREATE TABLE `auth_item_child` (
|
|
`parent` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
|
|
`child` varchar(64) COLLATE utf8_unicode_ci NOT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `auth_rule`
|
|
--
|
|
|
|
CREATE TABLE `auth_rule` (
|
|
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
|
|
`data` blob DEFAULT NULL,
|
|
`created_at` int(11) DEFAULT NULL,
|
|
`updated_at` int(11) DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `camera`
|
|
--
|
|
|
|
CREATE TABLE `camera` (
|
|
`id` int(11) NOT NULL,
|
|
`gate` int(11) NOT NULL,
|
|
`name` varchar(100) NOT NULL,
|
|
`type` varchar(5) NOT NULL,
|
|
`stream_url` text DEFAULT NULL,
|
|
`minWidth` int(11) NOT NULL DEFAULT 0,
|
|
`maxWidth` int(11) NOT NULL DEFAULT 0,
|
|
`minHeight` int(11) NOT NULL DEFAULT 0,
|
|
`maxHeight` int(11) NOT NULL DEFAULT 0,
|
|
`scaleFactor` float NOT NULL DEFAULT 0,
|
|
`minNeighbors` int(11) NOT NULL DEFAULT 0,
|
|
`status` int(11) NOT NULL DEFAULT 1,
|
|
`isRecognizeCamera` int(11) NOT NULL DEFAULT 1,
|
|
`isLongPlate` int(11) NOT NULL DEFAULT 0,
|
|
`stt` int(11) NOT NULL,
|
|
`roi_config` text DEFAULT NULL,
|
|
`created_at` int(11) NOT NULL,
|
|
`modified_at` int(11) NOT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `card`
|
|
--
|
|
|
|
CREATE TABLE `card` (
|
|
`id` int(11) NOT NULL,
|
|
`card_id` int(11) NOT NULL DEFAULT 0,
|
|
`code` varchar(30) NOT NULL,
|
|
`card_group` int(11) NOT NULL,
|
|
`description` text DEFAULT NULL,
|
|
`name` varchar(100) DEFAULT NULL,
|
|
`department` varchar(100) DEFAULT NULL,
|
|
`phone` varchar(20) DEFAULT NULL,
|
|
`plate` varchar(20) DEFAULT NULL,
|
|
`brand` varchar(50) DEFAULT NULL,
|
|
`address` text DEFAULT NULL,
|
|
`ngay_dang_ky` int(11) NOT NULL DEFAULT 0,
|
|
`ngay_phat_the` int(11) NOT NULL DEFAULT 0,
|
|
`ngay_hoat_dong` int(11) NOT NULL DEFAULT 0,
|
|
`ngay_het_han` int(11) NOT NULL DEFAULT 0,
|
|
`status` int(11) NOT NULL DEFAULT 1,
|
|
`created_at` int(11) NOT NULL DEFAULT 0,
|
|
`modified_at` int(11) NOT NULL DEFAULT 0
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `card_group`
|
|
--
|
|
|
|
CREATE TABLE `card_group` (
|
|
`id` int(11) NOT NULL,
|
|
`name` varchar(100) NOT NULL,
|
|
`description` text DEFAULT NULL,
|
|
`card_type` int(11) NOT NULL DEFAULT 1,
|
|
`vehicle_type` int(11) NOT NULL DEFAULT 1,
|
|
`auto_open_door` int(11) NOT NULL DEFAULT 0,
|
|
`cost_config` text DEFAULT NULL,
|
|
`created_at` int(11) NOT NULL DEFAULT 0,
|
|
`modified_at` int(11) NOT NULL DEFAULT 0
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `config`
|
|
--
|
|
|
|
CREATE TABLE `config` (
|
|
`id` int(11) NOT NULL,
|
|
`mac_address` varchar(30) NOT NULL,
|
|
`active` int(11) NOT NULL DEFAULT 0
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `gate`
|
|
--
|
|
|
|
CREATE TABLE `gate` (
|
|
`id` int(11) NOT NULL,
|
|
`area` int(11) NOT NULL,
|
|
`name` varchar(100) NOT NULL,
|
|
`description` text DEFAULT NULL,
|
|
`status` int(11) NOT NULL DEFAULT 1,
|
|
`user_id` int(11) NOT NULL DEFAULT 0,
|
|
`api_config` text DEFAULT NULL,
|
|
`cascade_config` text DEFAULT NULL,
|
|
`lane_config` text DEFAULT NULL,
|
|
`created_at` int(11) NOT NULL,
|
|
`modified_at` int(11) NOT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `logs`
|
|
--
|
|
|
|
CREATE TABLE `logs` (
|
|
`id` int(11) NOT NULL,
|
|
`card_id` int(11) NOT NULL,
|
|
`plate_in` varchar(20) DEFAULT NULL,
|
|
`plate_image_in` text DEFAULT NULL,
|
|
`frame_image_in` text DEFAULT NULL,
|
|
`face_image_in` text DEFAULT NULL,
|
|
`name_in` varchar(100) DEFAULT NULL,
|
|
`time_in` int(11) NOT NULL,
|
|
`camera_in` int(11) NOT NULL DEFAULT 0,
|
|
`mod_in` int(11) NOT NULL DEFAULT 0,
|
|
`plate_out` varchar(20) DEFAULT NULL,
|
|
`plate_image_out` text DEFAULT NULL,
|
|
`frame_image_out` text DEFAULT NULL,
|
|
`face_image_out` text NOT NULL,
|
|
`name_out` varchar(100) DEFAULT NULL,
|
|
`time_out` int(11) NOT NULL DEFAULT 0,
|
|
`camera_out` int(11) NOT NULL DEFAULT 0,
|
|
`mod_out` int(11) NOT NULL DEFAULT 0,
|
|
`logs_number` int(11) NOT NULL DEFAULT 0,
|
|
`soft_delete` int(11) NOT NULL DEFAULT 0
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `user`
|
|
--
|
|
|
|
CREATE TABLE `user` (
|
|
`id` int(11) NOT NULL,
|
|
`first_name` varchar(250) NOT NULL,
|
|
`last_name` varchar(250) DEFAULT NULL,
|
|
`phone_number` varchar(30) DEFAULT NULL,
|
|
`username` varchar(250) NOT NULL,
|
|
`email` varchar(500) DEFAULT NULL,
|
|
`password` varchar(250) NOT NULL,
|
|
`authKey` varchar(250) DEFAULT NULL,
|
|
`password_reset_token` varchar(250) DEFAULT NULL,
|
|
`user_image` varchar(500) DEFAULT NULL,
|
|
`quota` int(11) NOT NULL DEFAULT 2
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
--
|
|
-- Dumping data for table `user`
|
|
--
|
|
|
|
INSERT INTO `user` (`id`, `first_name`, `last_name`, `phone_number`, `username`, `email`, `password`, `authKey`, `password_reset_token`, `user_image`, `quota`) VALUES
|
|
(1, 'Administrator', '', '12313', 'admin', 'admin@bitraffic.vn', 'ceea23519f6f86ad67e9f798bf8002cb', NULL, NULL, '', 2);
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `vip_logs`
|
|
--
|
|
|
|
CREATE TABLE `vip_logs` (
|
|
`id` int(11) NOT NULL,
|
|
`vehicle_id` int(11) NOT NULL,
|
|
`plate_in` varchar(20) DEFAULT NULL,
|
|
`plate_image_in` text DEFAULT NULL,
|
|
`vehicle_image_in` text DEFAULT NULL,
|
|
`time_in` int(11) NOT NULL DEFAULT 0,
|
|
`gate_in` int(11) NOT NULL DEFAULT 0,
|
|
`plate_out` varchar(20) DEFAULT NULL,
|
|
`plate_image_out` text DEFAULT NULL,
|
|
`vehicle_image_out` text DEFAULT NULL,
|
|
`time_out` int(11) NOT NULL DEFAULT 0,
|
|
`gate_out` int(11) NOT NULL DEFAULT 0
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `vip_logs_other`
|
|
--
|
|
|
|
CREATE TABLE `vip_logs_other` (
|
|
`id` int(11) NOT NULL,
|
|
`plate` varchar(20) DEFAULT NULL,
|
|
`plate_image_in` text DEFAULT NULL,
|
|
`vehicle_image_in` text DEFAULT NULL,
|
|
`time_in` int(11) NOT NULL DEFAULT 0,
|
|
`gate_in` int(11) NOT NULL DEFAULT 0,
|
|
`plate_image_out` text DEFAULT NULL,
|
|
`vehicle_image_out` text DEFAULT NULL,
|
|
`time_out` int(11) NOT NULL DEFAULT 0,
|
|
`gate_out` int(11) NOT NULL DEFAULT 0
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `vip_vehicle`
|
|
--
|
|
|
|
CREATE TABLE `vip_vehicle` (
|
|
`id` int(11) NOT NULL,
|
|
`plate` varchar(20) DEFAULT NULL,
|
|
`chuxe` varchar(100) DEFAULT NULL,
|
|
`loaixe` varchar(100) DEFAULT NULL,
|
|
`donvi` varchar(100) DEFAULT NULL,
|
|
`dienthoai` varchar(20) DEFAULT NULL,
|
|
`diachi` text DEFAULT NULL,
|
|
`status` int(11) NOT NULL DEFAULT 1,
|
|
`created_at` int(11) NOT NULL,
|
|
`modified_at` int(11) NOT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
--
|
|
-- Indexes for dumped tables
|
|
--
|
|
|
|
--
|
|
-- Indexes for table `area`
|
|
--
|
|
ALTER TABLE `area`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `auth_assignment`
|
|
--
|
|
ALTER TABLE `auth_assignment`
|
|
ADD PRIMARY KEY (`item_name`,`user_id`),
|
|
ADD KEY `auth_assignment_user_id_idx` (`user_id`);
|
|
|
|
--
|
|
-- Indexes for table `auth_item`
|
|
--
|
|
ALTER TABLE `auth_item`
|
|
ADD PRIMARY KEY (`name`),
|
|
ADD KEY `rule_name` (`rule_name`),
|
|
ADD KEY `idx-auth_item-type` (`type`);
|
|
|
|
--
|
|
-- Indexes for table `auth_item_child`
|
|
--
|
|
ALTER TABLE `auth_item_child`
|
|
ADD PRIMARY KEY (`parent`,`child`),
|
|
ADD KEY `child` (`child`);
|
|
|
|
--
|
|
-- Indexes for table `auth_rule`
|
|
--
|
|
ALTER TABLE `auth_rule`
|
|
ADD PRIMARY KEY (`name`);
|
|
|
|
--
|
|
-- Indexes for table `camera`
|
|
--
|
|
ALTER TABLE `camera`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `card`
|
|
--
|
|
ALTER TABLE `card`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `card_group`
|
|
--
|
|
ALTER TABLE `card_group`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `config`
|
|
--
|
|
ALTER TABLE `config`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `gate`
|
|
--
|
|
ALTER TABLE `gate`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `logs`
|
|
--
|
|
ALTER TABLE `logs`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `user`
|
|
--
|
|
ALTER TABLE `user`
|
|
ADD PRIMARY KEY (`id`),
|
|
ADD UNIQUE KEY `username` (`username`);
|
|
|
|
--
|
|
-- Indexes for table `vip_logs`
|
|
--
|
|
ALTER TABLE `vip_logs`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `vip_logs_other`
|
|
--
|
|
ALTER TABLE `vip_logs_other`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `vip_vehicle`
|
|
--
|
|
ALTER TABLE `vip_vehicle`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- AUTO_INCREMENT for dumped tables
|
|
--
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `area`
|
|
--
|
|
ALTER TABLE `area`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `camera`
|
|
--
|
|
ALTER TABLE `camera`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `card`
|
|
--
|
|
ALTER TABLE `card`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `card_group`
|
|
--
|
|
ALTER TABLE `card_group`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `config`
|
|
--
|
|
ALTER TABLE `config`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `gate`
|
|
--
|
|
ALTER TABLE `gate`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `logs`
|
|
--
|
|
ALTER TABLE `logs`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `user`
|
|
--
|
|
ALTER TABLE `user`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=202;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `vip_logs`
|
|
--
|
|
ALTER TABLE `vip_logs`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `vip_logs_other`
|
|
--
|
|
ALTER TABLE `vip_logs_other`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `vip_vehicle`
|
|
--
|
|
ALTER TABLE `vip_vehicle`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- Constraints for dumped tables
|
|
--
|
|
|
|
--
|
|
-- Constraints for table `auth_item_child`
|
|
--
|
|
ALTER TABLE `auth_item_child`
|
|
ADD CONSTRAINT `auth_item_child_ibfk_1` FOREIGN KEY (`parent`) REFERENCES `auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|
ADD CONSTRAINT `auth_item_child_ibfk_2` FOREIGN KEY (`child`) REFERENCES `auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE;
|
|
COMMIT;
|
|
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|