Compare commits

..

3 Commits

Author SHA1 Message Date
ac1181479e Report and schematic docs completed 2023-09-27 01:53:19 +03:30
e028b5c902 gitignore 2023-09-26 23:49:14 +03:30
e0150933bb Moved to new location 2023-09-26 23:49:14 +03:30
6 changed files with 7 additions and 1 deletions

3
.gitignore vendored
View File

@@ -1,4 +1,5 @@
container/
container/db
container/.env
camera-client/camera_test.py
camera-client/logs/
camera-client/config.json

Binary file not shown.

BIN
Report975362202.pdf Normal file

Binary file not shown.

BIN
Schematic.odg Normal file

Binary file not shown.

BIN
Schematic.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 KiB

View File

@@ -0,0 +1,5 @@
CREATE TABLE records (
id INT AUTO_INCREMENT PRIMARY KEY,
timestamp VARCHAR(255) NOT NULL,
description VARCHAR(255) NOT NULL
);