|
| 1 | +/* |
| 2 | + Navicat Premium Data Transfer |
| 3 | +
|
| 4 | + Source Server : sale3 |
| 5 | + Source Server Type : SQLite |
| 6 | + Source Server Version : 3030001 |
| 7 | + Source Schema : main |
| 8 | +
|
| 9 | + Target Server Type : SQLite |
| 10 | + Target Server Version : 3030001 |
| 11 | + File Encoding : 65001 |
| 12 | +
|
| 13 | + Date: 12/08/2021 00:57:47 |
| 14 | +*/ |
| 15 | + |
| 16 | +PRAGMA foreign_keys = false; |
| 17 | + |
| 18 | +-- ---------------------------- |
| 19 | +-- Table structure for tbas_score |
| 20 | +-- ---------------------------- |
| 21 | +DROP TABLE IF EXISTS "tbas_score"; |
| 22 | +CREATE TABLE "tbas_score" ( |
| 23 | + "type" TEXT, |
| 24 | + "value" integer, |
| 25 | + "title" TEXT |
| 26 | +); |
| 27 | + |
| 28 | +-- ---------------------------- |
| 29 | +-- Table structure for tprj_activity |
| 30 | +-- ---------------------------- |
| 31 | +DROP TABLE IF EXISTS "tprj_activity"; |
| 32 | +CREATE TABLE "tprj_activity" ( |
| 33 | + "mixin_id" INTEGER NOT NULL, |
| 34 | + "std_id" INTEGER, |
| 35 | + "date" TEXT, |
| 36 | + "type" text, |
| 37 | + "count" INTEGER, |
| 38 | + "check_type" TEXT, |
| 39 | + "cal_done" real |
| 40 | +); |
| 41 | + |
| 42 | +-- ---------------------------- |
| 43 | +-- Table structure for tprj_leader_score |
| 44 | +-- ---------------------------- |
| 45 | +DROP TABLE IF EXISTS "tprj_leader_score"; |
| 46 | +CREATE TABLE "tprj_leader_score" ( |
| 47 | + "mixin_id" INTEGER, |
| 48 | + "score" integer |
| 49 | +); |
| 50 | + |
| 51 | +-- ---------------------------- |
| 52 | +-- Table structure for tprj_team_check_rate |
| 53 | +-- ---------------------------- |
| 54 | +DROP TABLE IF EXISTS "tprj_team_check_rate"; |
| 55 | +CREATE TABLE "tprj_team_check_rate" ( |
| 56 | + "team" TEXT, |
| 57 | + "date" TEXT, |
| 58 | + "rate" integer |
| 59 | +); |
| 60 | + |
| 61 | +-- ---------------------------- |
| 62 | +-- Table structure for tprj_team_score |
| 63 | +-- ---------------------------- |
| 64 | +DROP TABLE IF EXISTS "tprj_team_score"; |
| 65 | +CREATE TABLE "tprj_team_score" ( |
| 66 | + "team" TEXT, |
| 67 | + "score" integer |
| 68 | +); |
| 69 | + |
| 70 | +-- ---------------------------- |
| 71 | +-- Table structure for tprj_team_score_detail |
| 72 | +-- ---------------------------- |
| 73 | +DROP TABLE IF EXISTS "tprj_team_score_detail"; |
| 74 | +CREATE TABLE "tprj_team_score_detail" ( |
| 75 | + "team" TEXT, |
| 76 | + "score" integer, |
| 77 | + "date" TEXT |
| 78 | +); |
| 79 | + |
| 80 | +-- ---------------------------- |
| 81 | +-- Table structure for tprj_user |
| 82 | +-- ---------------------------- |
| 83 | +DROP TABLE IF EXISTS "tprj_user"; |
| 84 | +CREATE TABLE "tprj_user" ( |
| 85 | + "mixin_id" INTEGER NOT NULL, |
| 86 | + "std_id" INTEGER, |
| 87 | + "name" TEXT, |
| 88 | + "team" TEXT, |
| 89 | + "title" TEXT, |
| 90 | + PRIMARY KEY ("mixin_id") |
| 91 | +); |
| 92 | + |
| 93 | +-- ---------------------------- |
| 94 | +-- Table structure for tprj_user_score |
| 95 | +-- ---------------------------- |
| 96 | +DROP TABLE IF EXISTS "tprj_user_score"; |
| 97 | +CREATE TABLE "tprj_user_score" ( |
| 98 | + "mixin_id" INTEGER, |
| 99 | + "score" integer, |
| 100 | + "team" TEXT, |
| 101 | + "title" TEXT |
| 102 | +); |
| 103 | + |
| 104 | +-- ---------------------------- |
| 105 | +-- Table structure for tprj_user_score_detail |
| 106 | +-- ---------------------------- |
| 107 | +DROP TABLE IF EXISTS "tprj_user_score_detail"; |
| 108 | +CREATE TABLE "tprj_user_score_detail" ( |
| 109 | + "mixin_id" INTEGER, |
| 110 | + "score" integer, |
| 111 | + "team" TEXT, |
| 112 | + "title" TEXT, |
| 113 | + "date" TEXT |
| 114 | +); |
| 115 | + |
| 116 | +PRAGMA foreign_keys = true; |
0 commit comments