FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
framework-example/example.sql at master · typecho/framework-example · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Aug 13, 2021. It is now read-only.
typecho
/
framework-example
Public archive
Notifications
You must be signed in to change notification settings
Fork
20
Star
51
Code
Issues
5
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
framework-example
/
example.sql
Copy path
More file actions
More file actions
Latest commit
History
History
History
25 lines (20 loc) · 698 Bytes
Breadcrumbs
framework-example
/
example.sql
Copy path
File metadata and controls
25 lines (20 loc) · 698 Bytes
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
#
Dump of table people
#
------------------------------------------------------------
DROP
TABLE
IF EXISTS
`
people
`
;
CREATE
TABLE
`
people
` (
`
id
`
int
(
11
) unsigned
NOT NULL
AUTO_INCREMENT,
`
name
`
varchar
(
64
) DEFAULT
NULL
,
`
description
`
text
,
`
created
`
int
(
11
) DEFAULT
'
0
'
,
PRIMARY KEY
(
`
id
`
),
KEY
`
created
`
(
`
created
`
)
) ENGINE
=
InnoDB DEFAULT CHARSET
=
utf8;
LOCK TABLES
`
people
`
WRITE;
/*
!40000 ALTER TABLE `people` DISABLE KEYS
*/
;
INSERT INTO
`
people
`
(
`
id
`
,
`
name
`
,
`
description
`
,
`
created
`
)
VALUES
(
1
,
'
joyqi
'
,
'
这是一个好青年
'
,
1369215468
),
(
2
,
'
fenbox
'
,
'
文艺青年
'
,
1369215598
),
(
3
,
'
sunny
'
,
'
UFO
'
,
1369215765
);
/*
!40000 ALTER TABLE `people` ENABLE KEYS
*/
;
UNLOCK TABLES;
Back
|
FazBrowse Home
|
New Git URL