fixing markdown
This commit is contained in:
25
readme.md
25
readme.md
@@ -5,19 +5,14 @@
|
|||||||
- Node-Red server with ps4-waker installed.
|
- Node-Red server with ps4-waker installed.
|
||||||
|
|
||||||
## MySQL Database
|
## MySQL Database
|
||||||
|
- Table :
|
||||||
<code>
|
<code>
|
||||||
CREATE DATABASE `ps4` /*!40100 DEFAULT CHARACTER SET utf8 */;
|
CREATE DATABASE `ps4` /*!40100 DEFAULT CHARACTER SET utf8 */;
|
||||||
USE `ps4`;
|
USE `ps4`;
|
||||||
|
</code>
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `game_thumbnail`;
|
- game_time :
|
||||||
CREATE TABLE `game_thumbnail` (
|
<code>
|
||||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
||||||
`game_id` varchar(255) NOT NULL,
|
|
||||||
`thumbnail` longblob NOT NULL,
|
|
||||||
PRIMARY KEY (`id`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `game_time`;
|
DROP TABLE IF EXISTS `game_time`;
|
||||||
CREATE TABLE `game_time` (
|
CREATE TABLE `game_time` (
|
||||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
@@ -30,6 +25,18 @@ CREATE TABLE `game_time` (
|
|||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
</code>
|
</code>
|
||||||
|
|
||||||
|
- game_thumbnail :
|
||||||
|
<code>
|
||||||
|
DROP TABLE IF EXISTS `game_thumbnail`;
|
||||||
|
CREATE TABLE `game_thumbnail` (
|
||||||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
|
`game_id` varchar(255) NOT NULL,
|
||||||
|
`thumbnail` longblob NOT NULL,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
</code>
|
||||||
|
|
||||||
|
|
||||||
## Node-Red Flow
|
## Node-Red Flow
|
||||||
- Use "nodered.flow" to import the flow.
|
- Use "nodered.flow" to import the flow.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user