a
554325746@qq.com
2019-12-25 5ca83635d670aff1070f616a50d3fc43cccf2e29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
Navicat SQLite Data Transfer
 
Source Server         : count
Source Server Version : 30714
Source Host           : :0
 
Target Server Type    : SQLite
Target Server Version : 30714
File Encoding         : 65001
 
Date: 2019-06-04 10:59:23
*/
 
PRAGMA foreign_keys = OFF;
 
-- ----------------------------
-- Table structure for RealTimeMetrics
-- ----------------------------
DROP TABLE IF EXISTS "main"."RealTimeMetrics";
CREATE TABLE "RealTimeMetrics" (
"TotalEnters"  INTEGER,
"Date"  INTEGER,
"TransmitTime"  INTEGER,
"TotalExits"  INTEGER,
"id"  TEXT,
"CreateDate"  INTEGER,
PRIMARY KEY ("id" ASC)
);
 
-- ----------------------------
-- Indexes structure for table RealTimeMetrics
-- ----------------------------
CREATE UNIQUE INDEX "main"."idx_RealTimeMetrics"
ON "RealTimeMetrics" ("id" ASC);