FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
MOCKSQL/forjdbc.sql at main · fcdml/MOCKSQL · GitHub
fcdml
/
MOCKSQL
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
12
Pull requests
0
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
MOCKSQL
/
forjdbc.sql
Copy path
More file actions
More file actions
Latest commit
History
History
History
45 lines (38 loc) · 1.49 KB
Breadcrumbs
MOCKSQL
/
forjdbc.sql
Copy path
File metadata and controls
45 lines (38 loc) · 1.49 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
36
37
38
39
40
41
42
43
44
45
/*
Navicat Premium Data Transfer
Source Server : localhost_3306
Source Server Type : MySQL
Source Server Version : 80012
Source Host : localhost:3306
Source Schema : mocksql
Target Server Type : MySQL
Target Server Version : 80012
File Encoding : 65001
Date: 13/12/2020 14:04:28
*/
SET
NAMES utf8mb4;
SET
FOREIGN_KEY_CHECKS
=
0
;
--
----------------------------
--
Table structure for forjdbc
--
----------------------------
DROP
TABLE
IF EXISTS
`
forjdbc
`
;
CREATE
TABLE
`
forjdbc
` (
`
id
`
int
(
10
)
NOT NULL
,
`
username
`
varchar
(
255
) CHARACTER
SET
utf8mb4 COLLATE utf8mb4_general_ci
NULL
DEFAULT
NULL
,
`
password
`
varchar
(
255
) CHARACTER
SET
utf8mb4 COLLATE utf8mb4_general_ci
NULL
DEFAULT
NULL
,
`
createdate
`
datetime(
0
)
NULL
DEFAULT
NULL
,
`
enddate
`
datetime(
0
)
NULL
DEFAULT
NULL
,
`
status
`
enum(
'
持有中
'
,
'
转让中
'
,
'
已转让
'
) CHARACTER
SET
utf8mb4 COLLATE utf8mb4_general_ci
NULL
DEFAULT
NULL
,
`
uu
`
varchar
(
255
) CHARACTER
SET
utf8mb4 COLLATE utf8mb4_general_ci
NULL
DEFAULT
NULL
,
`
mydate
`
date
NULL
DEFAULT
NULL
,
`
afterdate
`
datetime(
0
)
NULL
DEFAULT
NULL
,
`
aa
`
datetime(
0
)
NULL
DEFAULT
NULL
,
`
bb
`
datetime(
0
)
NULL
DEFAULT
NULL
,
`
cc
`
datetime(
0
)
NULL
DEFAULT
NULL
,
`
dd
`
datetime(
0
)
NULL
DEFAULT
NULL
,
PRIMARY KEY
(
`
id
`
) USING BTREE
) ENGINE
=
InnoDB CHARACTER
SET
=
utf8mb4 COLLATE
=
utf8mb4_general_ci ROW_FORMAT
=
Dynamic;
--
----------------------------
--
Records of forjdbc
--
----------------------------
SET
FOREIGN_KEY_CHECKS
=
1
;
Back
|
FazBrowse Home
|
New Git URL