README.md aktualisiert
This commit is contained in:
parent
e6e6f91955
commit
4bb6f33028
1 changed files with 15 additions and 0 deletions
15
README.md
15
README.md
|
@ -47,6 +47,21 @@ Before running the program, ensure you have the following:
|
||||||
DB_NAME=your_db_name
|
DB_NAME=your_db_name
|
||||||
```
|
```
|
||||||
|
|
||||||
|
5. Create Database Table
|
||||||
|
|
||||||
|
```
|
||||||
|
CREATE TABLE `locations` (
|
||||||
|
`dt` timestamp NULL DEFAULT NULL,
|
||||||
|
`tid` char(2) DEFAULT NULL,
|
||||||
|
`lat` decimal(9,6) DEFAULT NULL,
|
||||||
|
`lon` decimal(9,6) DEFAULT NULL,
|
||||||
|
`batt` int(11) DEFAULT NULL,
|
||||||
|
`vac` int(11) DEFAULT NULL,
|
||||||
|
`device` varchar(255) DEFAULT NULL,
|
||||||
|
`user` varchar(255) DEFAULT NULL
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||||
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
### Running with Docker Compose
|
### Running with Docker Compose
|
||||||
|
|
Loading…
Reference in a new issue