Compare commits

...

2 Commits

Author SHA1 Message Date
e028b5c902 gitignore 2023-09-26 23:49:14 +03:30
e0150933bb Moved to new location 2023-09-26 23:49:14 +03:30
2 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

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
);