/*
Navicat SQLite Data Transfer
Source Server : testSQLite3
Source Server Version : 32200
Source Host : :0
Target Server Type : SQLite
Target Server Version : 32200
File Encoding : 65001
Date: 2018-06-06 13:29:41
*/
PRAGMA foreign_keys = OFF;
-- ----------------------------
-- Table structure for tb_order_messages
-- ----------------------------
DROP TABLE IF EXISTS "main"."tb_order_messages";
CREATE TABLE "tb_order_messages" (
"UUID" TEXT NOT NULL,
"my_uid" TEXT NOT NULL,
"send_from_uid" TEXT NOT NULL,
"send_to_uid" TEXT NOT NULL,
"send_client_time" TEXT NOT NULL,
"id_on_server" INTEGER,
"timestamp_on_server" INTEGER NOT NULL,
"msg_type" INTEGER NOT NULL,
"msg_content" TEXT NOT NULL,
"msg_size" TEXT NOT NULL,
"is_downloaded" TEXT NOT NULL,
UNIQUE(UUID)
);
-- ----------------------------
-- Indexes structure for table tb_order_messages
-- ----------------------------
CREATE UNIQUE INDEX "main"."idx_UUID"
ON "tb_order_messages" ("UUID" ASC);
网友评论