Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
chain33-pai
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
szh
chain33-pai
Commits
4dd483e2
Commit
4dd483e2
authored
Jan 06, 2020
by
szh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add rasp_version
parent
271aed4f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
raspberry.sql
docs/sql/raspberry.sql
+14
-0
No files found.
docs/sql/raspberry.sql
View file @
4dd483e2
...
@@ -86,3 +86,16 @@ CREATE TABLE `rasp_tickets` (
...
@@ -86,3 +86,16 @@ CREATE TABLE `rasp_tickets` (
PRIMARY
KEY
(
`hash`
),
PRIMARY
KEY
(
`hash`
),
KEY
`status`
(
`status`
)
KEY
`status`
(
`status`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
;
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
;
-- ----------------------------
-- Table structure for rasp_version
-- ----------------------------
DROP
TABLE
IF
EXISTS
`rasp_version`
;
CREATE
TABLE
`rasp_version`
(
`Id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`version`
varchar
(
255
)
DEFAULT
NULL
COMMENT
'版本号'
,
`type`
tinyint
(
3
)
DEFAULT
'0'
COMMENT
'类型 1 bityuan 2 chain33-pai'
,
`addtime`
int
(
11
)
DEFAULT
NULL
COMMENT
'添加时间'
,
PRIMARY
KEY
(
`Id`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
2
DEFAULT
CHARSET
=
utf8mb4
COMMENT
=
'程序版本更新控制'
;
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment